forked from onlybooks/java-algorithm-interview
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathP19_2.kt
30 lines (28 loc) · 965 Bytes
/
P19_2.kt
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
package ch08
import datatype.ListNode
class P19_2 {
fun reverseBetween(head: ListNode?, left: Int, right: Int): ListNode? {
// 예외 처리
if (head == null)
return null
// 임시 노드 선언
val root = ListNode(0)
// 임시 노드 다음으로 노드 시작
root.next = head
// 임시 노드부터 시작해 변경 필요한 위치 앞으로 이동
var start = root
for (i in 0 until left - 1)
start = start.next
// 변경이 필요한 마지막 위치 선언
val end = start.next
// right - left만큼 위치 변경 진행
for (i in 0 until right - left) {
val tmp = start.next
start.next = end.next
end.next = end.next.next
start.next.next = tmp
}
// 첫 번째 노드는 임시 노드이므로 그 다음부터 결과로 리턴
return root.next
}
}