-
Notifications
You must be signed in to change notification settings - Fork 24
/
P66_1.java
29 lines (25 loc) · 1.01 KB
/
P66_1.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
package ch17;
import datatype.ListNode;
public class P66_1 {
public ListNode insertionSortList(ListNode head) {
// 루트를 가리키는 변수 선언, 나중에 parent.next를 결과로 리턴
ListNode parent = new ListNode();
// 정렬을 끝낸 대상을 가리키는 포인터
ListNode p = parent;
// 다음 노드가 없을 때까지 순회
while (head != null) {
// 정렬을 끝낸 포인터(p)의 다음 값이 정렬을 해야 할 대상(head)보다 작다면 계속 이동
while (p.next != null && p.next.val < head.val)
p = p.next;
// 서로 위치를 교환하고 정렬을 해야 할 대상(head)은 다음 노드로 이동
ListNode pNext = p.next;
ListNode headNext = head.next;
p.next = head;
head.next = pNext;
head = headNext;
// 포인터는 다시 맨 앞으로 이동
p = parent;
}
return parent.next;
}
}