-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreorder-list.cpp
41 lines (41 loc) · 1.04 KB
/
reorder-list.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
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
void reorderList(ListNode* head) {
if (!head)
return;
ListNode *tmp = head, *half = head, *prev = NULL;
while (tmp->next && tmp->next->next) {
tmp = tmp->next->next;
half = half->next;
}
if (tmp->next)
half = half->next;
while (half) {
tmp = half->next;
half->next = prev;
prev = half;
half = tmp;
}
half = prev;
while (head && half) {
tmp = head->next;
prev = half->next;
head->next = half;
half->next = tmp;
head = tmp;
half = prev;
}
if (head && head->next)
head->next->next = NULL;
}
};