题目描述:输入一个链表,反转链表后,输出链表的所有元素。
时间限制:1秒 空间限制:32768K
思路:见翻转链表
代码:
/*
struct ListNode {
int val;
struct ListNode *next;
ListNode(int x) :
val(x), next(NULL) {
}
};*/
class Solution {
public:
ListNode* ReverseList(ListNode* pHead) {
ListNode* pre = NULL;
ListNode* next = NULL;
while(pHead!=NULL){
next = pHead->next;
pHead->next = pre;
pre = pHead;
pHead = next;
}
return pre;
}
};