题解 | #二叉树的深度#
- root 为空 则返回 0
- root 只有一个根节点 则返回 1 3.二叉树的深度为左子树深度和右子树深度的最大值 加上1 递归即可。
核心代码:
public class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
*/
public class Solution {
public int TreeDepth(TreeNode root) {
if(root == null) return 0;
if (root.left == null && root.right == null) return 1;
int left = TreeDepth(root.left);
int right = TreeDepth(root.right);
return left > right? left + 1 : right + 1;
}
}