"""
111. 二叉树的最小深度
给定一个二叉树,找出其最小深度。
最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
说明:叶子节点是指没有子节点的节点。
示例 1:
输入:root = [3,9,20,null,null,15,7]
输出:2
示例 2:
输入:root = [2,null,3,null,4,null,5,null,6]
输出:5
"""
class Solution(object):
#基于层序遍历(广度优先算法)求二叉树的最小深度也是可以的
def minDepth(self, root):
if not root: return 0
queue =[]
queue.append(root)
res = 0
while queue:
size = len(queue)
for i in range(size):
node = queue[0]
queue.remove(node)
if not node.left and not node.right: #比最大深度的不同位置
return res + 1
if node.left: queue.append(node.left)
if node.right: queue.append(node.right)
res += 1
return res
def minDepth1(self, root):
if not root: return 0
if not root.left and not root.right:
return 1
res = float('inf')
if root.left:
res = min(self.minDepth(root.left), res)
if root.right:
res = min(self.minDepth(root.right), res)
return res + 1