其他分享
首页 > 其他分享> > lectcode-排序链表

lectcode-排序链表

作者:互联网

要求

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

示例 1:

输入: 4->2->1->3
输出: 1->2->3->4
示例 2:

输入: -1->5->3->4->0
输出: -1->0->3->4->5

代码

ListNode* sortList(ListNode* head) {
    return mergesort(head);
}
ListNode *mergesort(ListNode *node)
{
    if(!node||!node->next) return node;
    ListNode *fast = node;
    ListNode *slow = node;
    ListNode *ng = slow;
    while(fast&&fast->next)
    {
        fast = fast->next->next;
        ng = slow;
        slow = slow->next;
    }
    ng->next = nullptr;  //将两个链表断开
    ListNode *l1 = mergesort(node);
    ListNode *l2 = mergesort(slow);
    return merge(l1,l2);
}
ListNode *merge(ListNode *l1,ListNode *l2)
{
    if(l1==nullptr) return l2;
    if(l2==nullptr) return l1;
    if(l1-> val<l2->val)                 
    {
         l1->next = merge(l1->next,l2);
         return l1;
    }
    else
    {
        l2->next = merge(l2->next,l1);
        return l2;
    }
}
};

总结

易殇 发布了48 篇原创文章 · 获赞 5 · 访问量 1201 私信 关注

标签:排序,ListNode,next,链表,l2,l1,return,lectcode
来源: https://blog.csdn.net/Dreamer_rx/article/details/104088872