23. 合并K个升序链表

题目:

输入:lists = [[1,4,5],[1,3,4],[2,6]]
输出:[1,1,2,3,4,4,5,6]
解释:链表数组如下:
[
  1->4->5,
  1->3->4,
  2->6
]
将它们合并到一个有序链表中得到。
1->1->2->3->4->4->5->6

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/merge-k-sorted-lists
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

思考:

因为数组的长度不定,所以其实当我们合并的时候,最多也只能合并两个子链表;

由此想到,此题可以用二分法来接,分别合并,最后得到大的结果;

合并两个链表按照升序排列教简单,直接用指针做就可以,移动到最后位置即可;

注意边界条件。

MARK!执行用时:1 ms, 在所有 Java 提交中击败了100.00%的用户

代码:

    // 合并k个升序列表
    public static ListNode mergeKLists(ListNode[] lists) {
        if (lists.length == 0) {
            return null;
        }
        return mergetList(lists, 0, lists.length - 1);
    }

    public static ListNode mergetList(ListNode[] lists, int start, int end) {

        if (start == end) {
            return lists[start];
        } else {
            int middle = (start + end) / 2;
            return mergetTwoList(mergetList(lists, start, middle), mergetList(lists, middle + 1, end));
        }
    }

    public static ListNode mergetTwoList(ListNode a, ListNode b) {
        ListNode m = a;
        ListNode n = b;
        ListNode newNode = null;
        ListNode begin = null;
        while (m != null && n != null) {
            if (m.val < n.val) {
                if (newNode == null) {
                    newNode = m;
                    begin = a;
                } else {
                    newNode.next = m;
                    newNode = newNode.next;
                }
                m = m.next;
            } else {
                if (newNode == null) {
                    newNode = n;
                    begin = b;
                } else {
                    newNode.next = n;
                    newNode = newNode.next;
                }
                n = n.next;
            }
        }
        if (m != null) {
            if (newNode == null) {
                newNode = m;
                begin = a;
            } else {
                newNode.next = m;
            }
        }

        if (n != null) {
            if (newNode == null) {
                newNode = n;
                begin = b;
            } else {
                newNode.next = n;
            }
        }
        return begin;
    }

    public static class ListNode {
     int val;
     ListNode next;
     ListNode() {}
     ListNode(int val) { this.val = val; }
     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 }

要实现合并K个升序链表,我们可以考虑使用分治法,将K个链表划分为两个子问题,分别合并这两个子问题,然后不断递归下去。 具体实现过程如下: 1. 将K个链表按照长度平均划分为两个子问题,每个子问题递归调用合并函数,直到只剩下一个链表或两个链表。 2. 合并两个链表的过程可以使用归并排序中的合并函数,将两个链表合并为一个升序链表。 3. 将合并后的链表返回,然后递归回去继续合并两个子问题的结果。 Java代码实现如下: ``` public ListNode mergeKLists(ListNode[] lists) { if (lists == null || lists.length == 0) { return null; } return mergeKLists(lists, 0, lists.length - 1); } private ListNode mergeKLists(ListNode[] lists, int left, int right) { if (left == right) { return lists[left]; } int mid = (left + right) / 2; ListNode l1 = mergeKLists(lists, left, mid); ListNode l2 = mergeKLists(lists, mid + 1, right); return mergeTwoLists(l1, l2); } private ListNode mergeTwoLists(ListNode l1, ListNode l2) { if (l1 == null) { return l2; } if (l2 == null) { return l1; } if (l1.val < l2.val) { l1.next = mergeTwoLists(l1.next, l2); return l1; } else { l2.next = mergeTwoLists(l1, l2.next); return l2; } } ``` 其中,`mergeKLists` 函数是递归调用的入口函数,它接收一个 `ListNode` 数组作为参数,表示要合并的K个链表。在函数中,我们首先判断链表数组是否为空或长度为0,如果是,则返回 `null`。否则,我们调用 `mergeKLists` 函数,将链表数组划分为两个子问题,然后递归调用 `mergeKLists` 函数,继续划分子问题,直到只剩下一个链表或两个链表。 在 `mergeKLists` 函数中,我们使用归并排序的思想,将两个链表合并为一个升序链表。具体实现是在 `mergeTwoLists` 函数中,它接收两个链表作为参数,递归调用自身,将两个链表合并为一个升序链表
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值