-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathReorder List.cpp
80 lines (65 loc) · 2.01 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
Solution by Rahul Surana
***********************************************************
You are given the head of a singly linked-list. The list can be represented as:
L0 → L1 → … → Ln - 1 → Ln
Reorder the list to be on the following form:
L0 → Ln → L1 → Ln - 1 → L2 → Ln - 2 → …
You may not modify the values in the list's nodes. Only nodes themselves may be changed.
***********************************************************
*/
#include <bits/stdc++.h>
/**
* 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:
ListNode* reverse(ListNode* end){
if(end == NULL) return NULL;
ListNode* prev = NULL;
ListNode* tail = end;
ListNode* nexter = NULL;
// cout << tail->val<<" <-";
while(tail){
nexter = tail->next;
tail->next = prev;
prev = tail;
tail = nexter;
}
return prev;
}
void reorderList(ListNode* head) {
ListNode* slow = head;
ListNode* fast = head->next;
ListNode* temp = new ListNode(-1);
while(fast && fast->next){
slow = slow->next;
fast = fast->next->next;
}
ListNode* end = slow->next;
ListNode* start = head;
slow->next = NULL;
end = reverse(end);
ListNode* ans = temp;
while(end || start){
if(start){
temp->next = start;
start = start->next;
temp = temp->next;
}
if(end){
temp->next = end;
end = end->next;
temp = temp->next;
}
}
head = ans->next;
}
};