-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinsufficient-nodes-in-root-to-leaf-paths.rs
71 lines (59 loc) · 1.65 KB
/
insufficient-nodes-in-root-to-leaf-paths.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#![allow(dead_code, unused, unused_variables)]
fn main() {}
struct Solution;
// Definition for a binary tree node.
#[derive(Debug, PartialEq, Eq)]
pub struct TreeNode {
pub val: i32,
pub left: Option<Rc<RefCell<TreeNode>>>,
pub right: Option<Rc<RefCell<TreeNode>>>,
}
impl TreeNode {
#[inline]
pub fn new(val: i32) -> Self {
TreeNode {
val,
left: None,
right: None,
}
}
}
use std::cell::RefCell;
use std::rc::Rc;
impl Solution {
pub fn sufficient_subset(
root: Option<Rc<RefCell<TreeNode>>>,
limit: i32,
) -> Option<Rc<RefCell<TreeNode>>> {
if root.is_none() {
return None;
}
{
if root.as_ref().unwrap().borrow().left.is_none()
&& root.as_ref().unwrap().borrow().right.is_none()
{
return if root.as_ref().unwrap().borrow().val < limit {
None
} else {
root
};
}
}
let val = root.as_ref().unwrap().borrow_mut().val;
let left =
Self::sufficient_subset(root.as_ref().unwrap().borrow_mut().left.take(), limit - val);
root.as_ref().unwrap().borrow_mut().left = left;
let right = Self::sufficient_subset(
root.as_ref().unwrap().borrow_mut().right.take(),
limit - val,
);
root.as_ref().unwrap().borrow_mut().right = right;
{
let r = root.as_ref().unwrap().borrow();
if r.left.is_none() && r.right.is_none() {
return None;
}
}
root
}
}