-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path86-PartitionList.kt
56 lines (49 loc) · 1.37 KB
/
86-PartitionList.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
*
* 86. Partition List
* https://leetcode.com/problems/partition-list/submissions/
*
* Example:
* var li = ListNode(5)
* var v = li.`val`
* Definition for singly-linked list.
* class ListNode(var `val`: Int) {
* var next: ListNode? = null
* }
*/
class Solution {
fun partition(head: ListNode?, x: Int): ListNode? {
var head = head
var leftHead: ListNode? = null
var leftTail: ListNode? = null
var rightHead: ListNode? = null
var rightTail: ListNode? = null
while (head != null) {
if (head.`val` < x) {
if (leftHead == null) {
leftHead = head
} else {
leftTail?.next = head!!
}
leftTail = head
} else {
if (rightHead == null) {
rightHead = head
} else {
rightTail?.next = head
}
rightTail = head
}
head = head.next
}
if (leftTail == null) {
return rightHead
}
merge(leftTail, rightHead, rightTail)
return leftHead
}
fun merge(leftTail: ListNode?, rightHead: ListNode?, rightTail: ListNode?) {
leftTail?.next = rightHead
rightTail?.next = null
}
}