Appearance
每天一道Rust-LeetCode(2019-08-29)
坚持每天一道题,刷题学习Rust.
题目描述
给定一个二叉树,找出其最大深度。
二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。
说明: 叶子节点是指没有子节点的节点。
示例:
给定二叉树 [3,9,20,null,null,15,7],
3
/ \
9 20
/ \
15 7
返回它的最大深度 3 。
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/maximum-depth-of-binary-tree 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
解题思路
递归是最简单的,不用递归,就需要用vec模拟栈了
解题过程
rust
use crate::share::TreeNode;
use std::cell::RefCell;
use std::rc::Rc;
struct Solution {}
impl Solution {
pub fn max_depth(root: Option<Rc<RefCell<TreeNode>>>) -> i32 {
if let Some(r) = root {
let mut left = Solution::max_depth(r.borrow_mut().left.take());
let mut right = Solution::max_depth(r.borrow_mut().right.take());
if left > right {
return left + 1;
} else {
return right + 1;
}
}
return 0;
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::share::*;
#[test]
fn test_level_order() {
assert_eq!(
Solution::max_depth(build_tree(&vec![3, 9, 20, NULL, NULL, 15, 7])),
3
);
}
}
其他
欢迎关注我的github,本项目文章所有代码都可以找到.