LeetCode104--二叉树最大深度

LeetCode104--二叉树最大深度_第1张图片

class Solution {
    public int maxDepth(TreeNode root) {
        int leftCon = 0;
        int rightCon = 0;
        if(root == null){
            return 0;
        }
        else {
            leftCon = maxDepth(root.left)+1;
            rightCon = maxDepth(root.right)+1;
            if(leftCon >= rightCon){
                return leftCon;
            }
            else {
                return rightCon;
            }
        }
    }
}

你可能感兴趣的:(LeetCode,二叉树最大深度,递归)