-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathis_balance.rs
More file actions
36 lines (34 loc) · 893 Bytes
/
is_balance.rs
File metadata and controls
36 lines (34 loc) · 893 Bytes
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
struct Solution;
#[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 is_balanced(root: Option<Rc<RefCell<TreeNode>>>) -> bool {
fn check(root: Option<Rc<RefCell<TreeNode>>>) -> (bool, i32) {
if let Some(nd) = root {
let nd = nd.borrow();
let (is1, d1) = check(nd.left.clone());
let (is2, d2) = check(nd.right.clone());
return ((d1 - d2).abs() < 2 && is1 & is2, d1.max(d2) + 1);
}
(true, 0)
}
true
}
}
fn main() {}