-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
111_Minimum_Depth_of_Binary_Tree.py
46 lines (43 loc) · 1.29 KB
/
111_Minimum_Depth_of_Binary_Tree.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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
# """
# # Recursion
# if root is None:
# return 0
# ld = self.minDepth(root.left)
# rd = self.minDepth(root.right)
# if ld != 0 and rd != 0:
# # handle 0 case!
# return 1 + min(ld, rd)
# return 1 + ld +rd
def minDepth(self, root):
# BFS
if root is None:
return 0
queue = [root]
depth, rightMost = 1, root
while len(queue) > 0:
node = queue.pop(0)
if node.left is None and node.right is None:
break
if node.left is not None:
queue.append(node.left)
if node.right is not None:
queue.append(node.right)
if node == rightMost:
# reach the current level end
depth += 1
if node.right is not None:
rightMost = node.right
else:
rightMost = node.left
return depth