-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMergeSortLL.java
74 lines (62 loc) · 2 KB
/
MergeSortLL.java
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
//Merge sort of a Linked List by using two external functions merge() and getMid()
class MergeSortLL {
public ListNode sortList(ListNode head) {
if (head == null || head.next == null) {
return head;
}
ListNode mid = getMid(head);
ListNode left = sortList(head);
ListNode right = sortList(mid);
return merge(left, right);
}
public ListNode merge(ListNode list1, ListNode list2) {
ListNode node = new ListNode();
ListNode tail = node;
while (list1 != null && list2 != null) {
if (list1.val > list2.val) {
tail.next = list2;
list2 = list2.next;
} else {
tail.next = list1;
list1 = list1.next;
}
tail = tail.next;
}
tail.next = (list1 != null) ? list1 : list2;
return node.next;
}
public ListNode getMid(ListNode head) {
ListNode slow = head;
ListNode fast = head;
ListNode prev = null;
while (fast != null && fast.next != null) {
prev = slow;
slow = slow.next;
fast = fast.next.next;
}
if (prev != null) {
prev.next = null;
}
return slow;
}
public static void main(String[] args) {
MergeSortLL sol = new MergeSortLL();
// Test the solution with the given example
ListNode testNode = new ListNode(1111111);
// Populate the testNode with more values as needed
ListNode sortedList = sol.sortList(testNode);
// Print sorted list to verify
while (sortedList != null) {
System.out.print(sortedList.val + " ");
sortedList = sortedList.next;
}
}
}
// Definition for singly-linked list.
class ListNode {
int val;
ListNode next;
ListNode() {}
ListNode(int val) { this.val = val; }
ListNode(int val, ListNode next) { this.val = val; this.next = next; }
}