分隔链表

in 知识共享 with 0 comment

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/partition-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

给你一个链表的头节点 head 和一个特定值 x ,请你对链表进行分隔,使得所有 小于 x 的节点都出现在 大于或等于 x 的节点之前。

你应当 保留 两个分区中每个节点的初始相对位置。

示例 1:
partition.jpg

输入:head = [1,4,3,2,5,2], x = 3
输出:[1,2,2,4,3,5]

示例 2:

输入:head = [2,1], x = 2
输出:[1,2]

提示:

链表中节点的数目在范围 [0, 200] 内
-100 <= Node.val <= 100
-200 <= x <= 200

本人提交代码

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* partition(ListNode* head, int x) 
    {
        ListNode* smallHead = NULL;
        ListNode* bigHead = NULL;
        ListNode* small = NULL;
        ListNode* big = NULL;
        ListNode* p = head;
        while ( p )
        {
            if ( p->val < x )
            {
                if ( !smallHead )
                    smallHead = p;

                if ( !small )
                    small = p;
                else
                {
                    small->next = p;
                    small = p;
                }
            }
            else
            {
                if ( !bigHead )
                    bigHead = p;

                if ( !big )
                    big = p;
                else
                {
                    big->next = p;
                    big = p;
                }
            }
            p = p->next;
        }
        if ( small )
            small->next = bigHead;
        if ( big )
            big->next = NULL;

        return smallHead ? smallHead : bigHead;
    }
};
Responses