一、单链表逆序的方法

/*单链表逆序的三种方法(递归、直接翻转指针、头插)*/

下文代码中的list_head 结构体为链表节点结构体。

/*递归方法*/
struct list_head *reverse(struct list_head *head)
{
    struct list_head *new_head;

            /*判断异常 || 结束判断*/
    if (!head || !head->next)/*边界条件*/
        return head;

    new_head = reverse(head->next);/*递归部分*/

    head->next->next = head;/*溯回部分*/
    head->next = NULL;/*记得要赋值为NULL,防止链表错乱*/

    return new_head;/*返回新的链表头*/
}

/*直接翻转指针*/
struct list_head *reverse(struct list_head *head)
{
    struct list_head *prev = NULL;
    struct list_head *next;
    
    while (head != NULL) {
        next = head->next;
        head->next = prev;
        prev = head;
        head = next;
    }

    return prev;
}

/*头插法*/
struct list_head *reverse(struct list_head *head)
{
    struct list_head *z, *j;
    
    j = head->next;/*j用来保存下一个要翻转的结点*/
    head->next = NULL;/*这里相当于把链表头与链表的其余部分断开,作为新的链表头*/

    while (j != NULL) {
        z = j;
        j = j->next;
        z->next = head->next;
        head->next = z;
    }

    return head;
}

参考文章:https://blog.csdn.net/v_xchen_v/article/details/53067448

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

风中1匹狼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值