码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 206. 反转链表

时间:2019-10-28 01:12:21      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:pre   reverse   while   输出   ++   解题思路   head   rev   nullptr   

题目要求:

输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL

方法一:

 class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        if(!head) return head;
        ListNode* pre = nullptr;
        ListNode* cur = head;
        ListNode* tmp;
        while(cur) {
            tmp = cur->next;
            cur->next = pre;
            pre = cur;
            cur = tmp;
        }
        return pre;
    }
};

使用三个指针用来保存下一个节点,当前节点 和前一个节点。

方法二:

class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        if(!head || !head->next) return head;
        ListNode* p = reverseList(head->next);
        head->next->next = head;
        head->next = nullptr;
        return p;
    }
};

递归用的很巧妙,对于链表的题目多了一种解题思路。不过要控制好边界情况。

Leetcode 206. 反转链表

标签:pre   reverse   while   输出   ++   解题思路   head   rev   nullptr   

原文地址:https://www.cnblogs.com/leyang2019/p/11750027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!