其他分享
首页 > 其他分享> > 二叉树的最大深度

二叉树的最大深度

作者:互联网

二叉树的最大深度

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;
    }
}

标签:最大,int,root,lh,二叉树,深度,rh,maxDepth
来源: https://blog.csdn.net/Lily8888888/article/details/113575234