leetcode 104 二叉树的最大深度

public int maxDepth(TreeNode root) {
        if (root == null) return 0;
        if (root.left == null && root.right == null){
            return 1;
        }
        return Math.max(maxDepth(root.left)+1,maxDepth(root.right)+1);
    }
上一篇:Thread interrupt方法解析


下一篇:jq.validate 自定义验证两个日期