-
Notifications
You must be signed in to change notification settings - Fork 481
/
0148.cpp
75 lines (71 loc) · 1.62 KB
/
0148.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
#include <iostream>
using namespace std;
// Definition for singly-linked list.
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
static int x = []() {std::ios::sync_with_stdio(false); cin.tie(0); return 0; }();
class Solution
{
public:
ListNode* _merge(ListNode* head1, ListNode* head2)
{
if (head1 == nullptr)
{
return head2;
}
if (head2 == nullptr)
{
return head1;
}
ListNode* h = new ListNode(-1);
ListNode* tmp = h;
while (head1 != nullptr && head2 != nullptr)
{
if (head1->val < head2->val)
{
tmp->next = head1;
head1 = head1->next;
}
else
{
tmp->next = head2;
head2 = head2->next;
}
tmp = tmp->next;
}
if (head1 != nullptr)
{
tmp->next = head1;
}
if (head2 != nullptr)
{
tmp->next = head2;
}
ListNode* retNode = h->next;
delete h;
return retNode;
}
ListNode* sortList(ListNode* head)
{
if (head == nullptr || head->next == nullptr)
{
return head;
}
ListNode* pre = head, *lat = head;
while (lat->next != nullptr && lat->next->next != nullptr)
{
lat = lat->next->next;
pre = pre->next;
}
lat = pre->next;
pre->next = nullptr;
return _merge(sortList(head), sortList(lat));
}
};
int main()
{
return 0;
}