码迷,mamicode.com
首页 > 编程语言 > 详细

148 Sort List 链表上的归并排序和快速排序

时间:2018-04-06 15:33:49      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:gets   desc   turn   cond   排序   快速排序   head   ble   nbsp   

在使用O(n log n) 时间复杂度和常数级空间复杂度下,对链表进行排序。

详见:https://leetcode.com/problems/sort-list/description/

方法一:归并排序

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* sortList(ListNode* head) {
        if(head==nullptr||head->next==nullptr)
        {
            return head;
        }
        ListNode* slow=head;
        ListNode* fast=head;
        ListNode* mid=nullptr;
        while(fast&&fast->next)
        {
            mid=slow;
            slow=slow->next;
            fast=fast->next->next;
        }
        mid->next=nullptr;
        return mergeHelper(sortList(head),sortList(slow));
    }
    ListNode* mergeHelper(ListNode* low,ListNode* high)
    {
        ListNode* helper=new ListNode(-1);
        ListNode* cur=helper;
        while(low&&high)
        {
            if(low->val<high->val)
            {
                cur->next=low;
                low=low->next;
            }
            else
            {
                cur->next=high;
                high=high->next;
            }
            cur=cur->next;
        }
        cur->next=low?low:high;
        return helper->next;
    }
};

 方法二:快速排序

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* sortList(ListNode* head) {
        if(head==nullptr||head->next==nullptr)
        {
            return head;
        }
        quickSort(head,nullptr);
        return head;
    }
    void quickSort(ListNode* begin,ListNode* end)
    {
        if(begin!=end)
        {
            ListNode* sep=getSeperator(begin,end);
            quickSort(begin,sep);
            quickSort(sep->next,end);
        }
    }
    ListNode* getSeperator(ListNode* begin,ListNode* end)
    {
        ListNode* first=begin;
        ListNode* second=begin->next;
        int key=begin->val;
        while(second!=end)
        {
            if(second->val<key)
            {
                first=first->next;
                swap(first,second);
            }
            second=second->next;
        }
        swap(first,begin);
        return first;
    }
    void swap(ListNode* a,ListNode* b)
    {
        int tmp=a->val;
        a->val=b->val;
        b->val=tmp;
    }
};

 

148 Sort List 链表上的归并排序和快速排序

标签:gets   desc   turn   cond   排序   快速排序   head   ble   nbsp   

原文地址:https://www.cnblogs.com/xidian2014/p/8727493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!