反转链表---简单

Posted manch1n

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了反转链表---简单相关的知识,希望对你有一定的参考价值。

题目:

  反转一个单链表。

示例:

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

思路:

  这道题比较经典,可以用递归与循环做。先说循环的:双指针加一个保留指针,轻松搞定。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        if(head==nullptr||head->next==nullptr)
        {
            return head;
        }
        auto p=head,q=head->next;
        p->next=nullptr;
        ListNode* reserve=q->next;
        while(1)
        {
            q->next=p;
            p=q;
            q=reserve;
            if(reserve==nullptr)
            {
                return p;
            }
            reserve=reserve->next;
        }
    }
};

  递归的有点难想呢。https://www.cnblogs.com/kubixuesheng/p/4394509.html

class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        if(head==nullptr||head->next==nullptr)
        {
            return head;
        }                      //找到最后一个节点
        else
        {
            auto p=reverseList(head->next);    //p就是最后一个节点
            head->next->next=head;       
            head->next=nullptr;
            return p;      //每次递归都返回最后一个节点
        }
    }
};

 

以上是关于反转链表---简单的主要内容,如果未能解决你的问题,请参考以下文章

python实现链表反转(转置)

java牛客BM1.反转链表

剑指 Offer 24. 反转链表(简单)

206. 反转链表简单迭代递归

java牛客BM1.反转链表

剑指offer24.反转链表(简单,清晰图解)