-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathday-142.cpp
48 lines (36 loc) · 1012 Bytes
/
day-142.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
47
48
/*
Reorder List
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…
You may not modify the values in the list's nodes, only nodes itself may be
changed.
Example 1:
Given 1->2->3->4, reorder it to 1->4->2->3.
Example 2:
Given 1->2->3->4->5, reorder it to 1->5->2->4->3.
*/
// Simple O(N) solution. Updated values in list
class Solution {
public:
void reorderList(ListNode* head) {
vector<int> nodeVals;
ListNode* temp = head;
while (temp != NULL) {
nodeVals.push_back(temp->val);
temp = temp->next;
}
temp = head;
int start = 0;
int end = nodeVals.size() - 1;
bool isFront = true;
while (temp != NULL) {
temp->val = nodeVals[isFront ? start : end];
temp = temp->next;
if (isFront)
start += 1;
else
end -= 1;
isFront = !isFront;
}
}
};