-
Notifications
You must be signed in to change notification settings - Fork 0
/
InsertionSortList.java
41 lines (34 loc) · 1 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
/*
* Key point: handle the head of list, fakeHead strategy
*/
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode insertionSortList(ListNode head) {
if(head == null || head.next == null)
return head;
ListNode fakeHead = new ListNode(Integer.MIN_VALUE);
ListNode current = head;
while(current != null){
ListNode next = current.next;
ListNode prev = fakeHead;
//find out the inserting position
while(prev.next != null && prev.next.val <current.val)
prev = prev.next;
//insert into the sorted part
current.next = prev.next;
prev.next = current;
current = next;
}
return fakeHead.next;
}
}