题解 | #二叉树的深度#

  1. root 为空 则返回 0
  2. 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;    
    }
}
全部评论

相关推荐

10-17 10:05
已编辑
北华大学 全栈开发
牛客872465272号:掉头发了哥
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务