链接:https://leetcode-cn.com/problems/fan-zhuan-lian-biao-lcof/
代码:
/** * 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* pre = nullptr; auto cur = head; while (cur) { auto tmp = cur->next; cur->next = pre; pre = cur; cur = tmp; } return pre; } };