-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path143.cpp
46 lines (33 loc) · 846 Bytes
/
143.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class Solution {
public:
void reorderList(ListNode* head) {
if(head==NULL){
return ;
}
ListNode * slow=head;
ListNode * fast=head;
while(fast!=NULL && fast->next!=NULL){
fast=fast->next->next;
slow=slow->next;
}
stack<ListNode*>S;
while(slow!=NULL){
S.push(slow);
slow=slow->next;
}
slow=head;
for(;;){
ListNode* last = S.top();
S.pop();
if(last == slow || S.empty())
{
last->next = NULL;
return;
}
ListNode* next = slow->next;
slow->next = last;
last->next = next;
slow = next;
}
}
};