算法
拿第一题的改了一下,偷个懒嘻嘻
时间复杂度 $O(n)$
C++ 代码
/**
* 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)
return head;
ListNode *tmp = new ListNode(0);
tmp->next = head;
ListNode *p = tmp;
vector<ListNode *> vec;
while(p)
{
vec.push_back(p);
p = p->next;
}
ListNode *n = vec[vec.size()-1]->next;
for(int i=2;i<vec.size();i++)
{
vec[i]->next = vec[i-1];
}
vec[1]->next = n;
vec[0]->next = vec[vec.size()-1];
return tmp->next;
}
};