forked from neetcode-gh/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0023-merge-k-sorted-lists.rs
44 lines (40 loc) · 1.37 KB
/
0023-merge-k-sorted-lists.rs
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
impl Solution {
pub fn merge_k_lists(lists: Vec<Option<Box<ListNode>>>) -> Option<Box<ListNode>> {
fn merge(list1: Option<Box<ListNode>>, list2: Option<Box<ListNode>>) -> Option<Box<ListNode>> {
match (list1, list2) {
(None, None) => None,
(None, Some(l)) | (Some(l), None) => Some(l),
(Some(l1), Some(l2)) => {
if l1.val < l2.val {
return Some(Box::new(ListNode {
val: l1.val,
next: merge(l1.next, Some(l2)),
}));
}
Some(Box::new(ListNode {
val: l2.val,
next: merge(Some(l1), l2.next),
}))
}
}
}
if lists.is_empty() {
return None;
}
let mut lists = lists;
while lists.len() > 1 {
let mut merged = vec![];
for i in (0..lists.len()).step_by(2) {
let l1 = lists[i].take();
let l2 = if i + 1 < lists.len() {
lists[i + 1].take()
} else {
None
};
merged.push(merge(l1, l2))
}
lists = merged;
}
lists[0].take()
}
}