[LeetCode] 206. 反转链表(Reverse Linked List)

本文已收录于 LeetCode刷题 系列,共计 28 篇,本篇是第 10 篇

本文已收录到:LeetCode刷题 专题

[title]题目[/title]

反转一个单链表。

示例:

输入:

 1->2->3->4->5->NULL

输出:

 5->4->3->2->1->NULL

[title]视频讲解[/title]

[bilibili cid=”” page=”1″]710133752[/bilibili]

 

[title]代码[/title]

/**
 * 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 = nullptr;
        ListNode* cur = nullptr;
        ListNode* temp = head;

        while (temp != nullptr)
        {
            pre = cur;
            cur = temp;
            temp = cur->next;
            cur->next = pre;
        }
        return cur;
    }
};

 

作者: 高志远

高志远,24岁,男生

发表评论

邮箱地址不会被公开。