-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0086.分隔链表.cs
65 lines (63 loc) · 1.52 KB
/
0086.分隔链表.cs
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
/*
* @lc app=leetcode.cn id=86 lang=csharp
*
* [86] 分隔链表
*
* https://leetcode-cn.com/problems/partition-list/description/
*
* algorithms
* Medium (60.30%)
* Likes: 354
* Dislikes: 0
* Total Accepted: 85.1K
* Total Submissions: 136.5K
* Testcase Example: '[1,4,3,2,5,2]\n3'
*
* 给你一个链表和一个特定值 x ,请你对链表进行分隔,使得所有小于 x 的节点都出现在大于或等于 x 的节点之前。
*
* 你应当保留两个分区中每个节点的初始相对位置。
*
*
*
* 示例:
*
*
* 输入:head = 1->4->3->2->5->2, x = 3
* 输出:1->2->2->4->3->5
*
*
*/
// @lc code=start
/**
* Definition for singly-linked list.
* public class ListNode {
* public int val;
* public ListNode next;
* public ListNode(int val=0, ListNode next=null) {
* this.val = val;
* this.next = next;
* }
* }
*/
public class Solution {
public ListNode Partition(ListNode head, int x) {
ListNode small = new ListNode(0);
ListNode smallHead = small;
ListNode large = new ListNode(0);
ListNode largeHead = large;
while (head != null) {
if (head.val < x) {
small.next = head;
small = small.next;
} else {
large.next = head;
large = large.next;
}
head = head.next;
}
large.next = null;
small.next = largeHead.next;
return smallHead.next;
}
}
// @lc code=end