剑指offer——26反转链表

Posted zzw1024

tags:

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

题目描述

输入一个链表,反转链表后,输出新链表的表头。
 
题解:
  每次只反转一个节点,先记住cur->next, 然后pre->cur,即可;
 
 1 class Solution {
 2 public:
 3     ListNode* ReverseList(ListNode* pHead) {
 4         if (pHead == nullptr || pHead->next == nullptr)return pHead;
 5         ListNode  *pre = nullptr, *cur = nullptr, *next = nullptr;
 6         cur = pHead;
 7         while (cur != nullptr)
 8         {
 9             next = cur->next;
10             cur->next = pre;
11             pre = cur;
12             cur = next;
13         }
14         return pre;
15     }
16 };

 

以上是关于剑指offer——26反转链表的主要内容,如果未能解决你的问题,请参考以下文章

《剑指Offer——24. 反转链表》代码

剑指Offer-反转链表

剑指Offer:反转链表

剑指offer:反转链表

剑指offer-反转链表

剑指OFFER 反转链表