-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path148 Sort List.java
More file actions
84 lines (68 loc) · 2.01 KB
/
148 Sort List.java
File metadata and controls
84 lines (68 loc) · 2.01 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
72
73
74
75
76
77
78
79
80
81
82
83
84
// 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
// Definition for singly-linked list.
public class ListNode {
int val;
ListNode next;
ListNode() {}
ListNode(int val) { this.val = val; }
ListNode(int val, ListNode next) { this.val = val; this.next = next; }
}
class Solution {
private static ListNode middle(ListNode head){
ListNode slow = head, fast = head.next;
while(fast != null && fast.next != null){
slow = slow.next;
fast = fast.next.next;
}
return slow;
}
private static ListNode merge(ListNode left, ListNode right){
ListNode newHead = new ListNode(0);
ListNode ptr = newHead;
while (left != null && right != null){
if(left.val <= right.val){
ptr.next = new ListNode(left.val);
left = left.next;
}
else{
ptr.next = new ListNode(right.val);
right = right.next;
}
ptr = ptr.next;
}
while(left != null){
ptr.next = new ListNode(left.val);
ptr = ptr.next;
left = left.next;
}
while(right != null){
ptr.next = new ListNode(right.val);
ptr = ptr.next;
right = right.next;
}
return newHead.next;
}
public ListNode sortList(ListNode head) {
if(head == null || head.next == null)
return head;
ListNode left = head;
ListNode mid = middle(head);
ListNode right = mid.next;
mid.next = null;
left = sortList(left);
right = sortList(right);
return merge(left, right);
}
}