/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* reverseList(ListNode* head) {
if(!head||!head->next) return head;
auto p=head,q=head->next;
while(q){
auto o=q->next;
q->next=p; //指针反转
p=q,q=o; //顺序遍历
}
head->next=NULL;
return p;
}
};