forked from SnowScriptWinterOfCode/LeetCode_Q
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SnowScriptWinterOfCode#527 from aishwarya-chandra/…
…day22q3 day22q3
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
``` | ||
public class Solution { | ||
public ListNode sortList(ListNode head) { | ||
if (head == null || head.next == null) | ||
return head; | ||
// step 1. cut the list to two halves | ||
ListNode prev = null, slow = head, fast = head; | ||
while (fast != null && fast.next != null) { | ||
prev = slow; | ||
slow = slow.next; | ||
fast = fast.next.next; | ||
} | ||
prev.next = null; | ||
// step 2. sort each half | ||
ListNode l1 = sortList(head); | ||
ListNode l2 = sortList(slow); | ||
// step 3. merge l1 and l2 | ||
return merge(l1, l2); | ||
} | ||
ListNode merge(ListNode l1, ListNode l2) { | ||
ListNode l = new ListNode(0), p = l; | ||
while (l1 != null && l2 != null) { | ||
if (l1.val < l2.val) { | ||
p.next = l1; | ||
l1 = l1.next; | ||
} else { | ||
p.next = l2; | ||
l2 = l2.next; | ||
} | ||
p = p.next; | ||
} | ||
if (l1 != null) | ||
p.next = l1; | ||
if (l2 != null) | ||
p.next = l2; | ||
return l.next; | ||
} | ||
} | ||
``` |