题目描述
输入一个链表,反转链表后,输出链表的所有元素。
代码实现
/*
struct ListNode {
int val;
struct ListNode *next;
ListNode(int x) :
val(x), next(NULL) {
}
};*/
class Solution {
public:
ListNode* ReverseList(ListNode* pHead) {
ListNode* k = NULL;
ListNode* l = NULL;
while(pHead!=NULL){
k = pHead;
pHead = k->next;
k->next = l;
l = k;
}
return l ;
}
};