LeetCode - 分隔链表

题目描述

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

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

示例:

输入: head = 1->4->3->2->5->2, x = 3
输出: 1->2->2->4->3->5

我的思路

借助两个辅助链表实现即可,然后合并两个链表。代码如下:

/**
 * 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) {
        if(head == NULL) return head;
        ListNode* first = new ListNode(0);
        ListNode* last = new ListNode(0);
        ListNode* cur = first;
        ListNode* cur2 = last;
        while(head != NULL){
            if(head->val < x){
                first->next = new ListNode(0);
                first->next->val = head->val;
                first = first->next;
            }
            else if(head->val >= x){
                last->next = new ListNode(0);
                last->next->val = head->val;
                last = last->next;
            }
            head = head->next;
        }
       if(first != NULL)first->next = cur2->next;
        return cur->next;
    }
};

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章