206.反转链表(双指针)

反转链表:

方法一:迭代(双指针)

考虑遍历链表,并在访问各节点时修改 next 引用指向。多创建一个指针prev和指针curr进行交换指向,达到改变各节点的指向目的。

#include<iostream>
#include<stack>

struct node {         //用结构体变量和指向结构体变量的指针构成链表
    int num;
    struct node* next;   //*next表示指向node这个结构体的指针变量
};

class Solution {
public:
    node* reverseList(node* head) {
        node* cur = head, * pre = NULL;
        while (cur != NULL) {
            node* tmp = cur->next; // 暂存后继节点 cur.next
            cur->next = pre;           // 修改 next 引用指向
            pre = cur;                 // pre 暂存 cur
            cur = tmp;                 // cur 访问下一节点
        }
        node* temp = pre;
        while (temp!= NULL) {      //遍历一下看结果
            std::cout << temp->num << std::endl;
            temp = temp->next;
        }
        return pre; //返回的是反过来的链表的头地址
    }
};

int main() {
    node a,b, * head, * p;
    a.num = 1;
    b.num = 2;
    head = &a;
    a.next = &b;
    b.next = NULL;
    Solution text;
    text.reverseList(head);
}

方法二:递归

考虑使用递归法遍历链表,当越过尾节点后终止递归,在回溯时修改各节点的 next 引用指向。

class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        if(head == NULL || head -> next == NULL) return head;
        ListNode *newNode = reverseList(head -> next);   //递到最末端节点为新的开头节点
        head -> next -> next = head;   //归,将箭头反向
        head -> next= NULL;           //记得把最开始的节点赋值为NULL,避免闭环
        return newNode;        //newNode始终为新最末端的节点,中途不变,最终将其当作开头节点反回
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值