forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_23.java
43 lines (35 loc) · 1.06 KB
/
_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
34
35
36
37
38
39
40
41
42
43
package com.fishercoder.solutions;
import com.fishercoder.common.classes.ListNode;
import java.util.Comparator;
import java.util.PriorityQueue;
/**
* 23. Merge k Sorted Lists
*
* Merge k sorted linked lists and return it as one sorted list.
* Analyze and describe its complexity.*/
public class _23 {
public ListNode mergeKLists(ListNode[] lists) {
PriorityQueue<ListNode> heap = new PriorityQueue(new Comparator<ListNode>() {
@Override
public int compare(ListNode o1, ListNode o2) {
return 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;
}
}