剑指 Offer 24. 反转链表
题目
代码
class Solution {
public:
ListNode* reverseList(ListNode* head) {
ListNode *pre = nullptr;
auto cur = head;
while(cur)
{
auto next = cur->next;
cur->next = pre;
pre = cur;
cur = next;
}
return pre;
}
};

浙公网安备 33010602011771号