forked from sureshmangs/Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path148. Sort List.cpp
85 lines (57 loc) · 1.62 KB
/
148. Sort List.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
84
85
Given the head of a linked list, return the list after sorting it in ascending order.
Follow up: Can you sort the linked list in O(n logn) time and O(1) memory (i.e. constant space)?
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
/**
* 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* a, ListNode* b){
if(!a) return b;
if(!b) return a;
ListNode *result=NULL;
if(a->val <= b->val){
result=a;
result->next=merge(a->next, b);
} else {
result=b;
result->next=merge(a, b->next);
}
return result;
}
ListNode* getMiddle(ListNode* head){
ListNode *slow=head, *fast=head, *prev=NULL;
while(fast!=NULL && fast->next!=NULL){
prev=slow;
slow=slow->next;
fast=fast->next->next;
}
if(prev) prev->next=NULL;
return slow;
}
ListNode* sortList(ListNode* head) {
if(head==NULL || head->next==NULL) return head;
ListNode* mid=getMiddle(head);
ListNode* left=sortList(head);
ListNode* right=sortList(mid);
return merge(left, right);
}
};