题目描述:
给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x 的节点之前。
你应当保留两个分区中每个节点的初始相对位置。
示例:
输入: head = 1->4->3->2->5->2, x = 3
输出: 1->2->2->4->3->5
AC C++ Solution:
先根据特定值分隔两个链表,再组合在一起。
/**
* 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 left(0),right(0);
ListNode *l = &left, *r = &right;
//分为两个链表,比x小的放在左链表,比x大的放在右链表。
while(head) {
if(head->val < x) {
l->next = head;
l = l->next;
}
else {
r->next = head;
r = r->next;
}
head = head->next;
}
r->next = NULL;
l->next = right.next;
return left.next;
}
};