-
Notifications
You must be signed in to change notification settings - Fork 0
/
200212-1.cpp
79 lines (73 loc) · 1.26 KB
/
200212-1.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
// https://leetcode-cn.com/problems/reorder-list/
#include <cstdio>
#include <initializer_list>
#include <vector>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
ListNode* init(initializer_list<int> a) {
ListNode node(0);
ListNode* p = &node;
for (auto e : a) {
p->next = new ListNode(e);
p = p->next;
}
return node.next;
}
void release(ListNode* p) {
if (p) release(p->next);
delete p;
}
void print(ListNode* p, bool hasEndl = true) {
if (p) {
printf("%d ", p->val);
if (p->next) print(p->next, false);
}
if (hasEndl) printf("\n");
}
class Solution {
public:
void reorderList(ListNode* head) {
if (!head || !head->next) return;
vector<ListNode*> a;
for (ListNode* p = head; p; p = p->next) {
a.push_back(p);
}
int n = a.size();
int i = 0, j = n - 1;
for (; i < j; ++i, --j) {
a[i]->next = a[j];
a[j]->next = a[i + 1];
}
a[i]->next = NULL;
}
};
int main()
{
Solution s;
{
ListNode* p = init({1,2,3,4});
print(p);
s.reorderList(p);
print(p);
release(p);
}
{
ListNode* p = init({1,2,3,4,5});
print(p);
s.reorderList(p);
print(p);
release(p);
}
{
ListNode* p = NULL;
print(p);
s.reorderList(p);
print(p);
release(p);
}
return 0;
}