class Solution {
public int maxDepth(TreeNode root) {
if(root == null){
return 0;
}
int lh = maxDepth(root.left);
int rh = maxDepth(root.right);
return lh > rh ? lh + 1 : rh + 1;
}
}
相关文章
- 11-06Leetcode 104. Maximum Depth of Binary Tree(二叉树的最大深度)
- 11-06WIP:【数据增强】深度学习中的图像数据增强及实践
- 11-061707. 与数组中元素的最大异或值
- 11-061707. 与数组中元素的最大异或值
- 11-06深度剖析功率电感和普通电感的区别
- 11-06深度剖析功率电感和普通电感的区别
- 11-06LeetCode--107--二叉树的层次遍历II
- 11-06LeetCode-239-剑指offer-滑动窗口的最大值-队列与栈-python
- 11-06【面试】我是如何面试别人List相关知识的,深度有点长文
- 11-06每日一题——寻找小于目标数的最大单调递增数