题解 | 单链表的排序

单链表的排序

https://www.nowcoder.com/practice/f23604257af94d939848729b1a5cda08

/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 *	ListNode(int x) : val(x), next(nullptr) {}
 * };
 * */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param head ListNode类 the head node
     * @return ListNode类
     */
    ListNode* sortInList(ListNode* head) {
        // write code here
        if (head == nullptr || head->next == nullptr) {
            return head;
        }
        return mergeSort(head);
    }

    ListNode* mergeSort(ListNode* head) {
        if (head->next == nullptr) {
            return head;
        }

        ListNode* slow = head;
        ListNode* fast = head;
        ListNode* pre = nullptr;
        while (fast != nullptr && fast->next != nullptr) {
            pre = slow;
            slow = slow->next;
            fast = fast->next->next;
        }
        pre->next = nullptr;
        ListNode* first = mergeSort(head);
        ListNode* second = mergeSort(slow);
        return merge(first, second);
    }

    ListNode* merge(ListNode* first, ListNode* second) {
        auto fake = ListNode(0);
        ListNode* p = &fake;
        while (first != nullptr && second != nullptr) {
            if (first->val <= second->val) {
                p->next = first;
                first = first->next;
            } else {
                p->next = second;
                second = second->next;
            }
            p = p->next;
        }
        if (first != nullptr) {
            p->next = first;
        }
        if (second != nullptr) {
            p->next = second;    
        }
        return fake.next;
    }
};

全部评论

相关推荐

点赞 评论 收藏
分享
湫湫湫不会java:写的很杂,连自己都不知道找什么工作的感觉,只是要份工作。针对自己稍微有点优势的方向好好整份简历投投吧,然后这杂的简历就辅助投投,因为自己认为的优势可能也不是很大的优势all in可能失业,自己也没有啥很想的方向还是可以用这通用的碰碰运气吧,加油
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务