21.03.10 LeetCode23. 合并K个升序链表
给你一个链表数组,每个链表都已经按升序排列。
请你将所有链表合并到一个升序链表中,返回合并后的链表。
示例 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 = [[]]
输出:[]
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode mergeKLists(ListNode[] lists) {
if(lists.length==0||lists==null)
return null;
//优先级队列(小根堆)
PriorityQueue<ListNode> qmin = new PriorityQueue<>((x,y)->x.val-y.val );
ListNode head = new ListNode(-1);
ListNode cur = head;
//先将全部链表头结点都丢进小根堆
for(ListNode l : lists)
{
if(l!=null)
qmin.add(l);
}
//每次从小根堆出顶,然后如果出的元素不为空,则将其next丢进堆
while(!qmin.isEmpty())
{
ListNode temp = qmin.poll();
cur.next = temp;
if(temp.next!=null)
qmin.add(temp.next);
cur = cur.next;
}
return head.next;
}
}