-
Notifications
You must be signed in to change notification settings - Fork 20
/
InsertionSortList.java
48 lines (36 loc) · 1.04 KB
/
InsertionSortList.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
/**
* Sort a linked list using insertion sort.
* <p>
* Accepted.
*/
public class InsertionSortList {
public ListNode insertionSortList(ListNode head) {
ListNode fakeHead = new ListNode(0);
while (head != null) {
ListNode pre = fakeHead;
while (pre.next != null && pre.next.val <= head.val) {
pre = pre.next;
}
ListNode headNext = head.next;
head.next = pre.next;
pre.next = head;
head = headNext;
}
return fakeHead.next;
}
public static class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
}
@Override
public boolean equals(Object obj) {
if (obj instanceof ListNode) {
ListNode node = (ListNode) obj;
return this.next == null && node.next == null || this.val == node.val && (this.next != null) && this.next.equals(node.next);
}
return false;
}
}
}