-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path148. Sort List.cpp
More file actions
71 lines (63 loc) · 1.75 KB
/
148. Sort List.cpp
File metadata and controls
71 lines (63 loc) · 1.75 KB
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
/*
Given the head of a linked list, return the list after sorting it in ascending order.
Example 1:
Input: head = [4,2,1,3]
Output: [1,2,3,4]
Example 2:
Input: head = [-1,5,3,4,0]
Output: [-1,0,3,4,5]
Example 3:
Input: head = []
Output: []
Constraints:
The number of nodes in the list is in the range [0, 5 * 104].
-105 <= Node.val <= -105
Follow up: Can you sort the linked list in O(n logn) time and O(1) memory (i.e. constant space)?
*/
/**
* 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:
ListNode* merge(ListNode* l1, ListNode* l2){
ListNode dummy(0);
ListNode* tail = &dummy;
while (l1 && l2){
if (l1 -> val < l2 -> val){
tail -> next = l1;
l1 = l1 -> next;
}
else {
tail -> next = l2;
l2 = l2 -> next;
}
tail = tail -> next;
}
tail -> next = l1 ? l1 : l2;
return dummy.next;
}
ListNode* split(ListNode* head){
ListNode* slow = head, *fast = head, *prev = nullptr;
while (fast && fast -> next){
prev = slow;
slow = slow -> next;
fast = fast -> next -> next;
}
if (prev) prev -> next = nullptr;
return slow;
}
ListNode* sortList(ListNode* head) {
if (!head || !head -> next) return head;
ListNode* mid = split(head);
ListNode* left = sortList(head);
ListNode* right = sortList(mid);
return merge(left, right);
}
};