-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRotateList.kt
More file actions
40 lines (34 loc) · 848 Bytes
/
RotateList.kt
File metadata and controls
40 lines (34 loc) · 848 Bytes
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
package leetcode
/**
* Problem description on [LeetCode](https://leetcode.com/problems/rotate-list/)
*/
class RotateList {
fun rotateRight(head: ListNode?, k: Int): ListNode? {
val size = listSize(head)
if (size < 2 || k % size == 0) {
return head
}
var fast = head
repeat(k % size) {
fast = fast?.next
}
var node = head
while (fast?.next != null) {
node = node?.next
fast = fast?.next
}
val newHead = node?.next
node?.next = null
fast?.next = head
return newHead
}
private fun listSize(head: ListNode?): Int {
var node = head
var count = 0
while (node != null) {
node = node.next
count++
}
return count
}
}