题目
给你一个链表的头节点 head
和一个特定值x
,请你对链表进行分隔,使得所有 小于 x
的节点都出现在 大于或等于 x
的节点之前。
你应当 保留 两个分区中每个节点的初始相对位置。
示例 1:
输入:head = [1,4,3,2,5,2], x = 3
输出:[1,2,2,4,3,5]
1
2
2
示例 2:
输入:head = [2,1], x = 2
输出:[1,2]
1
2
2
提示:
- 链表中节点的数目在范围
[0, 200]
内 -100 <= Node.val <= 100
-200 <= x <= 200
题解
java
public ListNode partition(ListNode head, int x) {
// 小于x的头结点
ListNode lessThanX = new ListNode(0);
// 小于x链表游标
ListNode lessThanXCursor = lessThanX;
// 大于等于x的头结点
ListNode greaterThanX = new ListNode(0);
// 大于等于x链表游标
ListNode greaterThanXCursor = greaterThanX;
// 遍历源链表
while (head != null) {
if (head.val < x) {
lessThanXCursor.next = new ListNode(head.val);
lessThanXCursor = lessThanXCursor.next;
} else {
greaterThanXCursor.next = new ListNode(head.val);
greaterThanXCursor = greaterThanXCursor.next;
}
head = head.next;
}
// 拼接链表
lessThanXCursor.next = greaterThanX.next;
return lessThanX.next;
}
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
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