-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path86.分隔链表.cpp
More file actions
61 lines (58 loc) · 1.34 KB
/
86.分隔链表.cpp
File metadata and controls
61 lines (58 loc) · 1.34 KB
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
/*
* @lc app=leetcode.cn id=86 lang=cpp
*
* [86] 分隔链表
*
* https://leetcode-cn.com/problems/partition-list/description/
*
* algorithms
* Medium (57.35%)
* Likes: 190
* Dislikes: 0
* Total Accepted: 35.3K
* Total Submissions: 61.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.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* partition(ListNode* head, int x) {
ListNode* before = new ListNode(-1);
ListNode* after = new ListNode(-1);
ListNode* p1 = before;
ListNode* p2 = after;
for(ListNode* p = head; p; p = p->next){
if(p->val < x){
p1->next = p;
p1 = p;
}
else{
p2->next = p;
p2 = p;
}
}
p2->next = nullptr;
p1->next = after->next;
return before->next;
}
};
// @lc code=end