-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathPartition_List.cpp
46 lines (44 loc) · 1.23 KB
/
Partition_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
42
43
44
45
46
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *partition(ListNode *head, int x) {
if(!head) return head;
ListNode *sentinel = new ListNode(numeric_limits<int>::max());
sentinel->next = head;
ListNode *iter = head;
ListNode *boundary = nullptr, *tail = sentinel;
while(iter) {
if(iter->val >= x) {
boundary = iter;
break;
}
tail = iter;
iter = iter->next;
}
if(!boundary) return head;
iter = boundary->next;
ListNode *prev = boundary;
while(iter) {
if(iter->val < x) {
prev->next = iter->next;
ListNode *tmp = iter;
iter = iter->next;
tmp->next = boundary;
tail->next = tmp;
tail = tmp;
} else {
prev = iter;
iter = iter->next;
}
}
if(head != boundary) return head;
return sentinel->next;
}
};