-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdelete-leaves-with-a-given-value.rs
executable file
·64 lines (59 loc) · 1.74 KB
/
delete-leaves-with-a-given-value.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
// 1325. Delete Leaves With a Given Value
// 🟠 Medium
//
// https://leetcode.com/problems/delete-leaves-with-a-given-value/
//
// Tags: Tree - Depth-First Search - Binary Tree
use std::cell::RefCell;
use std::rc::Rc;
// 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,
}
}
}
struct Solution;
impl Solution {
/// Use a post order traversal, once we process the left and right subtrees, if the value
/// matches the target return None, otherwise return the node.
///
/// Time complexity: O(n) - Postorder traversal of the tree.
/// Space complexity: O(h) - The call stack will grow to the height of the tree.
///
/// Runtime 0 ms Beats 100%
/// Memory 2.26 MB Beats 100%
#[allow(dead_code)]
pub fn remove_leaf_nodes(
root: Option<Rc<RefCell<TreeNode>>>,
target: i32,
) -> Option<Rc<RefCell<TreeNode>>> {
match root {
Some(root) => {
let mut node = root.borrow_mut();
node.left = Self::remove_leaf_nodes(node.left.clone(), target);
node.right = Self::remove_leaf_nodes(node.right.clone(), target);
if node.val == target && node.left.is_none() && node.right.is_none() {
None
} else {
Some(root.clone())
}
}
None => None,
}
}
}
// Tests.
fn main() {
println!("\n\x1b[92m» No tests in this file...\x1b[0m");
}