-
Notifications
You must be signed in to change notification settings - Fork 0
/
143.reorder-list.cpp
47 lines (45 loc) · 1.19 KB
/
143.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
/**
* 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) {
ListNode* temp = head;
ListNode* fastp = head;
while(fastp != NULL && fastp->next != NULL){
temp = temp->next;
fastp = fastp->next->next;
}
fastp = head;
temp = reverse(temp);
ListNode* temp2;
while(temp->next != NULL)
{
temp2=fastp->next;
fastp->next = temp;
temp = temp->next;
fastp->next->next = temp2;
fastp = fastp->next->next;
}
}
ListNode* reverse(ListNode* head) {
ListNode* current = head;
ListNode* backp = NULL;
ListNode* frontp = NULL;
while(current != NULL)
{
frontp = current->next;
current->next = backp;
backp = current;
current = frontp;
}
return backp;
}
};