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

在使用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;
    }
};

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

时间: 2024-11-10 18:50:22

148 Sort List 链表上的归并排序和快速排序的相关文章

[LeetCode]148. Sort List链表归并排序

要求时间复杂度O(nlogn),空间复杂度O(1),采用归并排序 传统的归并排序空间复杂度是O(n),原因是要用一个数组表示合并后的数组,但是这里用链表表示有序链表合并后的链表,由于链表空间复杂度是O(1),所以可以. 链表问题经常出现TLE问题或者MLE问题,这时候要检查链表拼接过程或者循环过程,看有没有死循环 public ListNode sortList(ListNode head) { if (head==null||head.next==null) return head; //利用

[LeetCode] 148. Sort List 链表排序

Sort a linked list in O(n log n) time using constant space complexity. Example 1: Input: 4->2->1->3 Output: 1->2->3->4 Example 2: Input: -1->5->3->4->0 Output: -1->0->3->4->5 解法:归并排序.由于有时间和空间复杂度的要求.把链表从中间分开,递归下去,都

Leetcode 148. Sort List 归并排序 in Java

148. Sort List Total Accepted: 81218 Total Submissions: 309907 Difficulty: Medium Sort a linked list in O(n log n) time using constant space complexity. /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; *

No.148 Sort List

No.148 Sort List Sort a linked list in O(n log n) time using constant space complexity. 分析: 常量空间且O(nlogn)时间复杂度,单链表适合用归并排序,双向链表适合用快速排序 有一个问题是:若算上栈空间,空间复杂度也为O(nogn) 还是对排序算法不够熟练!! 1 struct ListNode 2 { 3 int val; 4 ListNode *next; 5 ListNode(int x):val(

148. Sort List(js)

148. Sort List Sort a linked list in O(n log n) time using constant space complexity. Example 1: Input: 4->2->1->3 Output: 1->2->3->4 Example 2: Input: -1->5->3->4->0 Output: -1->0->3->4->5题意:链表排序,时间复杂度nlogn代码如下:

刷题148. Sort List

一.题目说明 题目148. Sort List,对链表进行排序,时间复杂度要求是O(nlog(n)),空间复杂度要求是常量.难度是Medium! 二.我的解答 根据要求,唯一符合标准的是归并排序. class Solution{ public: ListNode* sortList(ListNode* head){ if(head==NULL || head->next==NULL) return head; return mergeSort(head); } //归并排序 ListNode*

[Lintcode]98. Sort List/[Leetcode]148. Sort List

98. Sort List/148. Sort List 本题难度: Medium Topic: Linked List Description Sort a linked list in O(n log n) time using constant space complexity. Example Example 1: Input: 1->3->2->null Output: 1->2->3->null Example 2: Input: 1->7->2

Java for LeetCode 148 Sort List

Sort a linked list in O(n log n) time using constant space complexity. 解题思路: 归并排序.快速排序.堆排序都是O(n log n),由于优先级队列是用堆排序实现的,因此,我们使用优先级队列即可,JAVA实现如下: public ListNode sortList(ListNode head) { if(head==null||head.next==null) return head; Queue<ListNode> pQ

单向链表上是否有环

详见:http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt115 有一个单链表,其中可能有一个环,也就是某个节点的next指向的是链表中在它之前的节点,这样在链表的尾部形成一环. 问题: 1.如何判断一个链表是不是这类链表?2.如果链表为存在环,如果找到环的入口点? 解答: 1.最简单的方法, 用一个指针遍历链表, 每遇到一个节点就把他的内存地址(java中可以用object.hashcode())做为key放在一个hashtabl