206. 反转链表
题目
代码
/**
* 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* root=nullptr;
while(head!=nullptr)
{
auto temp=head->next;
head->next=root;
root=head;
head=temp;
}
return root;
}
};
思路
直接用头插法原地逆转链表,递归的方法同理。
https://github.com/li-zheng-hao