Maximum Depth of Binary Tree
3
/ \
9 20
/ \
15 7Solution
*Recursive
public int maxDepth(TreeNode root) {
if(root==null){
return 0;
}
return 1+Math.max(maxDepth(root.left),maxDepth(root.right));
}DFS
*BFS
Last updated