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; } };
思路:头插。
以上是关于lc 反转链表的主要内容,如果未能解决你的问题,请参考以下文章