问题描述:
输入一个链表,反转链表后,输出新链表的表头。
源码:
书上的代码可能有一点问题,应该是if(cur),书上写的if(nex)。
/*
struct ListNode {
int val;
struct ListNode *next;
ListNode(int x) :
val(x), next(NULL) {
}
};*/
class Solution {
public:
ListNode* ReverseList(ListNode* pHead) {
if(!pHead) return nullptr;
ListNode *result = nullptr;
ListNode *pre=nullptr, *cur=pHead, *nex=nullptr;
while(cur){
nex = cur->next;
if(cur) result = cur;
cur->next = pre;
pre = cur;
cur = nex;
}
return result;
}
};