输入一个链表,反转链表后,输出链表所有元素。
/*
struct ListNode {
int val;
struct ListNode *next;
ListNode(int x) :
val(x), next(NULL) {
}
};*/
class Solution {
public:
ListNode* ReverseList(ListNode* pHead) {
if(pHead==NULL)
return pHead;
ListNode *first=NULL;
ListNode *second=NULL;
while(pHead)
{
second=pHead;
pHead=pHead->next;
second->next=first;
first=second;
}
return second;
}
};