Skip to content

Instantly share code, notes, and snippets.

@arjunsk
Created May 1, 2022 15:00
Show Gist options
  • Save arjunsk/0b7aef83b9e2a4f59329c53add38b047 to your computer and use it in GitHub Desktop.
Save arjunsk/0b7aef83b9e2a4f59329c53add38b047 to your computer and use it in GitHub Desktop.
use std::rc::Rc;
use std::cell::RefCell;
impl Solution {
pub fn is_balanced(root: Option<Rc<RefCell<TreeNode>>>) -> bool {
match root {
None => true,
Some(curr_node) =>{
let curr_node = curr_node.borrow();
let left = Self::height(curr_node.left.clone());
let right = Self::height(curr_node.right.clone());
let diff = i32::abs(left-right);
if(diff <= 1){
return Self::is_balanced(curr_node.left.clone()) && Self::is_balanced(curr_node.right.clone());
}
return false;
}
}
}
pub fn height(root: Option<Rc<RefCell<TreeNode>>>) -> i32{
match root {
None => 0,
Some(curr_node) => {
let curr_node = curr_node.borrow();
1 + std::cmp::max( Self::height(curr_node.left.clone()), Self::height(curr_node.right.clone()) )
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment