-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathminimum-depth-of-binary-tree.rs
90 lines (72 loc) · 2.36 KB
/
minimum-depth-of-binary-tree.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#![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 min_depth1(root: Option<Rc<RefCell<TreeNode>>>) -> i32 {
if root.is_none() {
return 0;
}
let root = root.unwrap();
if root.borrow().left.is_none() && root.borrow().right.is_none() {
1
} else if root.borrow().left.is_none() && root.borrow().right.is_some() {
1 + Solution::min_depth(RefCell::borrow_mut(&root).right.take())
} else if root.borrow().left.is_some() && root.borrow().right.is_none() {
1 + Solution::min_depth(RefCell::borrow_mut(&root).left.take())
} else {
let left = 1 + Solution::min_depth(RefCell::borrow_mut(&root).left.take());
let right = 1 + Solution::min_depth(RefCell::borrow_mut(&root).right.take());
if left > right {
return right;
}
left
}
}
pub fn min_depth(root: Option<Rc<RefCell<TreeNode>>>) -> i32 {
if root.is_none() {
return 0;
}
let mut height = 1;
let mut v = vec![(root, height)];
let mut index = 0;
while index < v.len() {
if v[index].0.as_ref().unwrap().borrow().left.is_none()
&& v[index].0.as_ref().unwrap().borrow().right.is_none()
{
height = v[index].1;
break;
}
if v[index].0.as_ref().unwrap().borrow().left.is_some() {
let x = v[index].1 + 1;
let left = v[index].0.as_ref().unwrap().borrow_mut().left.take();
v.push((left, x));
}
if v[index].0.as_ref().unwrap().borrow().right.is_some() {
let x = v[index].1 + 1;
let right = v[index].0.as_ref().unwrap().borrow_mut().right.take();
v.push((right, x));
}
index += 1;
}
height
}
}