-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path148-Sort-List.c
88 lines (87 loc) · 1.79 KB
/
148-Sort-List.c
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
84
85
86
87
88
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2) {
if (NULL == l1)
{
return l2;
}
if (NULL == l2)
{
return l1;
}
struct ListNode *head = NULL, *tail = NULL;
while (NULL != l1 && NULL != l2)
{
if (l1->val < l2->val)
{
if (NULL == head)
{
head = l1;
tail = l1;
}
else
{
tail->next = l1;
tail = tail->next;
}
l1 = l1->next;
}
else
{
if(NULL == head)
{
head = l2;
tail = l2;
}
else
{
tail->next = l2;
tail = tail->next;
}
l2 = l2->next;
}
}
if (NULL != l1)
{
tail->next = l1;
}
if (NULL != l2)
{
tail->next = l2;
}
return head;
}
struct ListNode* sortList(struct ListNode* head) {
if (NULL == head || NULL == head->next)
{
return head;
}
struct ListNode *temp, *lhs, *rhs;
if (NULL == head->next->next)
{
if (head->val > head->next->val)
{
temp = head;
head = head->next;
head->next = temp;
temp->next = NULL;
}
return head;
}
struct ListNode *slow = head, *fast = head;
while (NULL != fast && NULL != fast->next)
{
slow = slow->next;
fast = fast->next->next;
}
temp = slow->next;
slow->next = NULL;
lhs = sortList(head);
rhs = sortList(temp);
return mergeTwoLists(lhs, rhs);
}