lc 反转链表

Posted friskypuppy

tags:

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

链接:https://leetcode-cn.com/problems/reverse-linked-list/

代码:

技术图片
/**
 * 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) return nullptr;
        ListNode* cur = head;
        ListNode* ret = nullptr;
        while(cur) {
            if(ret == nullptr) {
                ListNode* temp = new ListNode(cur->val);
                ret = temp;
                cout << cur->val << endl;
            }
            else {
                ListNode* temp = new ListNode(cur->val);
                temp->next = ret;
                ret = temp;
                cout << cur->val << endl;
            }
            cur = cur->next;
        }
        return ret;
    }
};
View Code

思路:头插。

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

lc 反转链表

LC206-反转链表

力扣算法JS LC [203. 移除链表元素] LC [206. 反转链表]

基础链表问题练习2

C语言反转单向链表的代码

算法刷题:LC初级算法