forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_23.java
33 lines (27 loc) · 933 Bytes
/
_23.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.fishercoder.solutions;
import com.fishercoder.common.classes.ListNode;
import java.util.Comparator;
import java.util.PriorityQueue;
public class _23 {
public static class Solution1 {
public ListNode mergeKLists(ListNode[] lists) {
PriorityQueue<ListNode> heap = new PriorityQueue((Comparator<ListNode>) (o1, o2) -> o1.val - o2.val);
for (ListNode node : lists) {
if (node != null) {
heap.offer(node);
}
}
ListNode pre = new ListNode(-1);
ListNode temp = pre;
while (!heap.isEmpty()) {
ListNode curr = heap.poll();
temp.next = new ListNode(curr.val);
if (curr.next != null) {
heap.offer(curr.next);
}
temp = temp.next;
}
return pre.next;
}
}
}