forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_23.java
50 lines (43 loc) · 1.16 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
44
45
46
47
48
49
50
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.
*
* Example:
*
* Input:
* [
* 1->4->5,
* 1->3->4,
* 2->6
* ]
* Output: 1->1->2->3->4->4->5->6
*
* */
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;
}
}
}