Easy
給定二叉樹甲捏,返回最淺深度音羞。
簡單的遞歸問題钾唬,與二叉樹最大深度類似堰乔。
注意:如果一棵樹只有左或右節(jié)點偏化,這個樹的深度為2不為1
Example:
[1,null,2]的深度是2不是1
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution(object):
def minDepth(self, root):
"""
:type root: TreeNode
:rtype: int
"""
if not root: return 0
if not root.left or not root.right: return max(self.minDepth(root.left), self.minDepth(root.right))+1
else: return min(self.minDepth(root.left), self.minDepth(root.right))+1