-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathPartition List.cpp
More file actions
44 lines (42 loc) · 937 Bytes
/
Partition List.cpp
File metadata and controls
44 lines (42 loc) · 937 Bytes
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
/**
* 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)
{
vector<int> less;
vector<int> greater;
ListNode* node = head;
while (node != NULL)
{
if (node->val < x)
{
less.push_back(node->val);
}
else
{
greater.push_back(node->val);
}
node = node->next;
}
node = head;
for (size_t i = 0; i < less.size(); ++i)
{
node->val = less[i];
node = node->next;
}
for (size_t i = 0; i < greater.size(); ++i)
{
node->val = greater[i];
node = node->next;
}
return head;
}
};