-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathPartition.kt
71 lines (62 loc) · 1.88 KB
/
Partition.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.daily.algothrim.leetcode
/**
* 86. 分隔链表
* 给你一个链表和一个特定值 x ,请你对链表进行分隔,使得所有小于 x 的节点都出现在大于或等于 x 的节点之前。
*
* 你应当保留两个分区中每个节点的初始相对位置。
* 示例:
*
* 输入:head = 1->4->3->2->5->2, x = 3
* 输出:1->2->2->4->3->5
* */
class Partition {
companion object {
@JvmStatic
fun main(args: Array<String>) {
Partition().solution(ListNode(1).apply {
next = ListNode(4).apply {
next = ListNode(3).apply {
next = ListNode(2).apply {
next = ListNode(5).apply {
next = ListNode(2)
}
}
}
}
}, 3)?.printAll()
println()
Partition().solution(ListNode(1).apply {
next = ListNode(1)
}, 2)?.printAll()
}
}
/**
* O(n)
*/
// head = 1->4->3->2->5->2, x = 3
fun solution(head: ListNode?, x: Int): ListNode? {
var fast = head
// 哨兵
val result = ListNode(-1).apply { next = head }
var preFast: ListNode? = result
var slow: ListNode? = null
while (fast != null) {
val temp = fast.next
// 找到第一个小于x的节点
if (fast.`val` >= x && slow == null) {
slow = preFast
}
if (fast.`val` < x && slow != null) {
val next = slow.next
slow.next = fast
fast.next = next
slow = fast
preFast?.next = temp
} else {
preFast = fast
}
fast = temp
}
return result.next
}
}