反转一个单链表。

示例:

输入: 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) {
        ListNode* Pre=NULL, *Cur=head;
        while(Cur){
            ListNode* Next = Cur->next;
            Cur->next = Pre;
            Pre = Cur;
            Cur = Next;
        }
        return Pre;
    }
};

 

相关文章:

  • 2021-10-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-26
  • 2021-09-25
  • 2021-04-11
猜你喜欢
  • 2022-12-23
  • 2021-12-26
  • 2021-12-02
  • 2021-05-23
相关资源
相似解决方案