Thursday, June 12, 2014

LeetCode Maximum Depth of Binary

Recursion:

public int maxDepth(TreeNode root) {
        if (root == null) return 0;
        int leftDepth = maxDepth(root.left);
        int rightDepth = maxDepth(root.right);
        return Math.max(leftDepth, rightDepth)+1;
    }


No comments:

Post a Comment