Leetcode -- Sort List

题目:
Sort a linked list in O(n log n) time using constant space complexity.

分析:
O(n log n)有归并排序,快速排序和堆排序。针对链表,采用归并排序是比较合理的。快排在最坏的情况,复杂度是O(n^2)。

思路:难点在于寻找链表的中点。

代码:

 ListNode* sortList(ListNode* head) {
        //如果head是空的,或者只有一个node,就不需要排序了
        if (head == NULL ||head -> next == NULL) return head;
        //fast, slow配合寻找中点。
        ListNode* fast = head;
        ListNode* slow = head;
        while(fast->next && fast->next->next)
        {
            slow = slow -> next;
            fast = fast ->next->next;
        }
        fast = slow;
        slow = fast -> next;
        fast->next = NULL;
        fast = sortList(head);
        slow = sortList(slow);
        return merge(fast, slow);
    }
    //将两个排好序的链表,合成一个。
    ListNode* merge(ListNode* head1, ListNode* head2)
    {
        if(head1 == NULL) return head2;
        if(head2 == NULL) return head1;
        ListNode* l;
        if(head1->val > head2 -> val)
        {
            l = head2;
            head2 = head2->next;
        }
        else
        {
            l = head1;
            head1= head1->next;
        }
        ListNode* l1 = l;
        while(head1 && head2)
        {
            if(head1->val > head2 -> val)
            {
                l->next = head2;
                head2 = head2 -> next;
                l = l-> next;
            }
            else
            {
                l-> next = head1;
                head1 = head1 -> next;
                l = l->next;
            }
        }
        if(head1)
        {
            l->next = head1;
        }
        if(head2)
        {
            l->next = head2;
        }
        return l1;
    }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值