Leetcode 86. 分隔链表

86. 分隔链表

解题思路:

这道题第一反应就是,模拟快排算法的那个分割,但是分割之后会有问题,无法保证之前的相对顺序,所以,采用双链表解法,after指针指向比target更大的数,before指针指向比target更小的数,最后把after和before指针连起来就ok了

源代码:
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
private:
    unordered_map<int, ListNode*> hash;
public:
    ListNode* partition(ListNode* head, int x) {
    	// 这部分是快排的那个算法,不过没啥用,就是记录一下
        /*if(!head) return head;
        ListNode* root = head;
        int index = 0;
        while(root){
            hash[index] = root;
            root = root->next;
            index ++;
        }
        int len = index;
        int left = 0, right = len - 1;
        while(left < right){
            while(left < right && hash[right]->val > x) right --;
            while(left < right && hash[left]->val < x) left ++;
            swap(hash[left], hash[right]);
        }
        ListNode* new_head = new ListNode(-1), *last = new_head;
        int i = 0;
        for(;i<len;i++){
            last->next = new ListNode((hash[i])->val);
            last = last->next;
        }
        return new_head->next;*/
        if(!head) return head;
        ListNode* root = head, *after = new ListNode(-1), *before = new ListNode(-1);
        ListNode* a_cur = after, *b_cur = before, *b_last = before, *a_last = after;
        while(root){
            if(root->val >= x){
                a_cur = new ListNode(root->val);
                a_last->next = a_cur;
                a_last = a_cur;
                a_last->next = NULL;
            }else{
                b_cur = new ListNode(root->val);
                b_last->next = b_cur;
                b_last = b_cur;
                b_last->next = NULL;
            }
            root = root->next;
        }
        b_last->next = after->next;
        return before->next;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值