题目地址
解题思路
无它,惟手熟尔!
代码实现(C++)
/**
* 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* temp; //用来保存
ListNode* curnode=head;
ListNode* pre=nullptr;
while(curnode)
{
temp=curnode->next;
curnode->next=pre;
pre=curnode;
curnode=temp;
}
return pre;
}
};