-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path148.java
37 lines (37 loc) · 1.07 KB
/
148.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
/**
* 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 {
public ListNode sortList(ListNode head) {
if (head == null) return head;
ListNode res = head, prev = null;
int max = res.val;
while (head != null) {
if (head.val < res.val) {
prev.next = head.next;
head.next = res;
res = head;
head = prev.next;
} else if (head.val < max) {
ListNode temp = res;
while (temp.next.val < head.val) temp = temp.next;
prev.next = head.next;
head.next = temp.next;
temp.next = head;
head = prev.next;
} else {
max = head.val;
prev = head;
head = head.next;
}
}
return res;
}
}