题目:输入一个链表,反转链表后,输出新链表的表头。
思路:https://www.cnblogs.com/csbdong/p/5674990.html
/*
struct ListNode {
int val;
struct ListNode *next;
ListNode(int x) :
val(x), next(NULL) {
}
};*/
class Solution {
public:
ListNode* ReverseList(ListNode* pHead) {
ListNode* p=NULL;
ListNode* q=pHead;
ListNode* ans=NULL;
while(q!=NULL){
ListNode* t=q->next;
if(t==NULL) ans=q;
q->next=p;
p=q;
q=t;
}
return ans;
}
};