-
Notifications
You must be signed in to change notification settings - Fork 0
/
200213-1.cpp
83 lines (77 loc) · 1.46 KB
/
200213-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
80
81
82
83
// https://leetcode-cn.com/problems/insertion-sort-list/
#include <cstdio>
#include <initializer_list>
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) {
printf("[ "); for (; p; p = p->next) printf("%d ", p->val); printf("]\n");
}
class Solution {
public:
ListNode* insertionSortList(ListNode* head) {
if (!head || !head->next) return head;
ListNode node(0); node.next = head;
for (;;) {
ListNode* s = NULL;
for (ListNode* p = &node; p->next; p = p->next) {
if (p != &node && p->val > p->next->val) {
s = p->next;
p->next = p->next->next;
break;
}
}
if (!s) break;
for (ListNode* p = &node; p->next; p = p->next) {
if (p->next->val >= s->val) {
s->next = p->next;
p->next = s;
break;
}
}
}
return node.next;
}
};
int main()
{
Solution s;
{
ListNode* p = init({4,2,1,3});
print(p);
p = s.insertionSortList(p);
print(p);
release(p);
}
{
ListNode* p = init({-1,5,3,4,0});
print(p);
p = s.insertionSortList(p);
print(p);
release(p);
}
{
ListNode* p = init({});
print(p);
p = s.insertionSortList(p);
print(p);
release(p);
}
return 0;
}