题目
给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x 的节点之前。
你应当保留两个分区中每个节点的初始相对位置。
示例:
输入: head = 1->4->3->2->5->2, x = 3
输出: 1->2->2->4->3->5
解析
创建两个链表,分别链接小于x和大于等于x的节点,最后将它们合并起来
代码
/**
* 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* dummy1 = new ListNode(-1);
ListNode* h1 = dummy1;
ListNode* dummy2 = new ListNode(-1);
ListNode* h2 = dummy2;
ListNode* cur = head;
while(cur) {
if (cur->val < x) {
h1->next = cur;
h1 = h1->next;
} else {
h2->next = cur;
h2 = h2->next;
}
cur = cur->next;
}
h1->next = dummy2->next;
h2->next = NULL;
return dummy1->next;
}
};