/**
* 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) {
//这个链表操作太经典了
ListNode* prev = nullptr;
auto cur = head;
while(cur){
auto next = cur->next;
cur->next = prev;
prev = cur;
cur = next;
}
return prev;
}
};