合并K个升序列表(题目来自LeetCode)

给你一个链表数组,每个链表都已经按升序排列。

请你将所有链表合并到一个升序链表中,返回合并后的链表。

示例 1:

输入: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
示例 2:

输入:lists = []
输出:[]
示例 3:

输入:lists = [[]]
输出:[]
 
提示:

k == lists.length
0 <= k <= 10^4
0 <= lists[i].length <= 500
-10^4 <= lists[i][j] <= 10^4
lists[i] 按 升序 排列
lists[i].length 的总和不超过 10^4

思路一:数组策略

在这里插入图片描述

代码如下:

public class Solution9 {
    public ListNode mergeKLists(ListNode[] lists) {
        if (lists==null||lists.length==0) return null;
        ArrayList<ListNode> listNodes = new ArrayList<>();
        for (ListNode listNode : lists) {
            while (listNode!=null){
                listNodes.add(listNode);
                listNode=listNode.next;
            }
        }
        listNodes.sort((ListNode l1,ListNode l2)->{
            return l1.val-l2.val;
        });
        ListNode head = new ListNode(0);
        ListNode cur = head;
        for (ListNode listNode : listNodes) {
            cur = cur.next = listNode;
        }
        return head.next;
    }
}

思路二:迭代

迭代示意图

代码如下:

 public ListNode mergeKLists(ListNode[] lists) {
      if (lists==null||lists.length==0) return null;
      ListNode head = new ListNode(0);
      ListNode cur = head;
      while (true) {
          int minIndex = -1;
          for (int i = 0; i < lists.length; i++) {
              if (lists[i] == null) continue;
              if (minIndex == -1 || lists[i].val < lists[minIndex].val) {
                  minIndex = i;
              }
          }
              if (minIndex==-1) break;
              cur = cur.next = lists[minIndex];
              lists[minIndex] = lists[minIndex].next;
          }
          return head.next;
        }

思路三:两两比较合并

在这里插入图片描述

代码如下:

class Solution {
   public ListNode mergeKLists(ListNode[] lists) {
        if (lists==null||lists.length==0) return null;
        for (int i = 1; i < lists.length ; i++) {
            lists[0] = mergeTwo(lists[0],lists[i]);
        }
        return lists[0];
    }
    
    public ListNode mergeTwo(ListNode l1,ListNode l2){
        if (l1==null) return l2;
        if (l2==null) return l1;
        ListNode head = new ListNode(0);
        ListNode cur = head;
        while (l1!=null&&l2!=null){
            if (l1.val<l2.val){
                cur = cur.next = l1;
                l1 = l1.next;
            }else {
                cur = cur.next = l2;
                l2 = l2.next;
            }
        }
        if (l1==null) cur = cur.next = l2;
        if (l2==null) cur = cur.next = l1;
        return head.next;
    }
}

思路四:最小堆

在这里插入图片描述

代码如下:

class Solution {
   public ListNode mergeKLists(ListNode[] lists) {
        if (lists==null||lists.length==0) return null;
        PriorityQueue<ListNode> queue = new PriorityQueue<>((ListNode l1,ListNode l2)->{
            return l1.val - l2.val;
        });
        ListNode head = new ListNode(0);
        ListNode cur = head;
        for (int i = 0; i < lists.length; i++) {
            if (lists[i]==null) continue;
            queue.offer(lists[i]);
        }
        while (!queue.isEmpty()){
            ListNode poll = queue.poll();
            cur = cur.next = poll;
            if (poll.next!=null){
                queue.offer(poll.next);
            }
        }
        return head.next;
    }
}

思路五:分治算法

在这里插入图片描述

代码如下:

class Solution {
 public ListNode mergeKLists(ListNode[] lists) {
        if (lists==null||lists.length==0) return null;
        int times = 1;
        while (times<lists.length) {
            for (int i = 0; i +times< lists.length; i+=times<<1) {
                lists[i] = mergeTwo(lists[i], lists[i + times]);
            }
            times = times<<1;
        }
        return lists[0];
    }


     public ListNode mergeTwo(ListNode l1,ListNode l2){
        if (l1==null) return l2;
        if (l2==null) return l1;
        ListNode head = new ListNode(0);
        ListNode cur = head;
        while (l1!=null&&l2!=null){
            if (l1.val<l2.val){
                cur = cur.next = l1;
                l1 = l1.next;
            }else {
                cur = cur.next = l2;
                l2 = l2.next;
            }
        }
        if (l1==null) cur = cur.next = l2;
        if (l2==null) cur = cur.next = l1;
        return head.next;
    }
}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值