104. 二叉树的最大深度

class Solution {
    public int maxDepth(TreeNode root) {
        return root==null?0:Math.max(maxDepth(root.left),maxDepth(root.right))+1;
    }
}

 

posted on 2022-03-19 10:36  一仟零一夜丶  阅读(20)  评论(0)    收藏  举报