【LeetCode】148. Sort List 排序链表(Medium)(JAVA)每日一题

【LeetCode】148. Sort List 排序链表(Medium)(JAVA)

题目地址: https://leetcode.com/problems/sort-list/

题目描述:

Given the head of a linked list, return the list after sorting it in ascending order.

Follow up: Can you sort the linked list in O(n logn) time and O(1) memory (i.e. constant space)?

Example 1:

Input: head = [4,2,1,3]
Output: [1,2,3,4]

Example 2:

Input: head = [-1,5,3,4,0]
Output: [-1,0,3,4,5]

Example 3:

Input: head = []
Output: []

Constraints:

  • The number of nodes in the list is in the range [0, 5 * 10^4].
  • -10^5 <= Node.val <= 10^5

题目大意

给你链表的头结点 head ,请将其按 升序 排列并返回 排序后的链表 。

进阶:

  • 你可以在 O(n log n) 时间复杂度和常数级空间复杂度下,对链表进行排序吗?

解题方法

插入排序
  1. 根据采用插入排序的方法,对链表进行排序,时间复杂度 O(n^2)
  2. 插入排序:找到 A 节点,A.val < cur.val <= A.next.val,然后插入在 A 节点后面即可
  3. 不断循环往排序过的链表里插入节点即可
class Solution {
    public ListNode sortList(ListNode head) {
        ListNode res = null;
        while (head != null) {
            ListNode cur = head;
            head = head.next;
            cur.next = null;
            res = insert(res, cur);
        }
        return res;
    }

    public ListNode insert(ListNode head, ListNode node) {
        if (head == null) return node;
        if (head.val >= node.val) {
            node.next = head;
            return node;
        }
        ListNode res = head;
        while (head.next != null && head.next.val < node.val) {
            head = head.next;
        }
        ListNode next = head.next;
        head.next = node;
        node.next = next;
        return res;
    }
}

直接超时了: Time Limit Exceeded

归并排序
  1. 题目要求 O(nlogn) 的时间复杂度,肯定要有一个二分过程,所以采用归并排序,一分为二,再合并
  2. 一分为二:关键是找出中间节点,采用快慢指针的方式
  3. 合并排序
class Solution {
    public ListNode sortList(ListNode head) {
        if (head == null || head.next == null) return head;
        ListNode mid = getMid(head);
        ListNode node2 = mid.next;
        mid.next = null;
        return merge(sortList(head), sortList(node2));
    }
    
    public ListNode merge(ListNode node1, ListNode node2) {
        ListNode res = new ListNode();
        ListNode pre = res;
        while (node1 != null || node2 != null) {
            ListNode cur = null;
            if (node1 == null) {
                cur = node2;
                node2 = node2.next;
            } else if (node2 == null) {
                cur = node1;
                node1 = node1.next;
            } else if (node1.val < node2.val) {
                cur = node1;
                node1 = node1.next;
            } else {
                cur = node2;
                node2 = node2.next;
            }
            cur.next = null;
            pre.next = cur;
            pre = cur;
        }
        return res.next;
    }
    
    public ListNode getMid(ListNode head) {
        if (head == null || head.next == null) return head;
        ListNode slow = head;
        ListNode fast = head.next;
        while (fast != null && fast.next != null) {
            slow = slow.next;
            fast = fast.next.next;
        }
        return slow;
    }
}

执行耗时:8 ms,击败了27.46% 的Java用户
内存消耗:46.9 MB,击败了7.90% 的Java用户

欢迎关注我的公众号,LeetCode 每日一题更新
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
根据,题目要求在O(n log n)的时间复杂度和常数级空间复杂度下对链表进行排序。根据提供的代码,可以使用归并排序来解决这个问题。代码中的sortList函数是递归函数,首先判断链表是否为空或者只有一个节点,如果是的话直接返回该链表。然后通过快慢指针找到链表的中点,将链表分成两半,再递归地对两个子链表进行排序。最后,使用merge函数将两个有序的子链表合并成一个有序的链表。merge函数通过比较两个链表节点的值来确定节点的顺序,然后将节点逐个连接起来。整个过程可以保证链表最终被排序。因此,可以使用该方法解决leetcode 148的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [leetcode 148 排序链表 C语言](https://blog.csdn.net/qq_42007287/article/details/104730970)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [LeetCode148. Sort List 排序链表(C语言)](https://blog.csdn.net/wangqingchuan92/article/details/104037031)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [LeetCode 148. Sort List](https://blog.csdn.net/smmyy022/article/details/82937283)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值