Maximum Depth of Binary Tree
Created: February 12, 2019 by [lek-tin]
Last updated: February 12, 2019
Given a binary tree, find its maximum depth.
The maximum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.
NOTE: A leaf is a node with no children.
Example:
Given binary tree [3,9,20,null,null,15,7]
,
3
/ \
9 20
/ \
15 7
return its minimum depth = 3.
Solution:
recursion
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public int maxDepth(TreeNode root) {
if (root == null) return 0;
int left = maxDepth(root.left);
int right = maxDepth(root.right);
return (left == 0 || right == 0) ? left + right + 1 : Math.max(left, right) + 1;
}
}
DFS using stack
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def maxDepth(self, root: TreeNode) -> int:
stack = []
if root:
stack.append((root, 1))
maxDepth = 0
while stack != []:
root, currDepth = stack.pop()
if root:
maxDepth = max(currDepth, maxDepth)
stack.append((root.left, currDepth+1))
stack.append((root.right, currDepth+1))
return maxDepth