LeetCode No.111 | StriveZs的博客

LeetCode No.111

LeetCode第111题—二叉树的最小深度

自己代码的开源仓库:click here 欢迎Star和Fork :)

题目描述

给定一个二叉树,找出其最小深度。

最小深度是从根节点到最近叶子节点的最短路径上的节点数量。

说明:叶子节点是指没有子节点的节点。

figure.1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
示例 1

输入:root = [3,9,20,null,null,15,7]
输出:2

示例 2

输入:root = [2,null,3,null,4,null,5,null,6]
输出:5

提示:

树中节点数的范围在 [0, 105] 内
-1000 <= Node.val <= 1000

代码

执行用时:944 ms, 在所有 Python 提交中击败了18.01%的用户内存消耗:92.5 MB, 在所有 Python 提交中击败了61.96%的用户

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, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution(object):
globalMinDepth = 100000
def depthSearch(self, node, depth):
if node == None:
return
# 为叶子节点,进行深度判断
if node.left == None and node.right == None:
if depth < self.globalMinDepth:
self.globalMinDepth = depth + 1 # +1的原因是因为这里的深度算当前的深度
return
self.depthSearch(node.left, depth+1)
self.depthSearch(node.right, depth+1)
def minDepth(self, root):
"""
:type root: TreeNode
:rtype: int
核心思想:
最小深度是从根节点到最近叶子节点的最短路径上的节点数量
使用DFS,设置一个全局最小深度,每当到达一个叶子结点就和当前全局最大深度进行比较
要确保节点是叶子节点
如果小于则更新全剧最小深度。
"""
if root == None:
return 0
self.depthSearch(root,0)
return self.globalMinDepth

if __name__ == '__main__':
root = TreeNode(2)
node1 = TreeNode(3)
node2 = TreeNode(4)
node3 = TreeNode(5)
node4 = TreeNode(6)
root.right = node1
node1.right = node2
node2.right = node3
node3.right = node4
s = Solution()
print(s.minDepth(root))
StriveZs wechat
Hobby lead  creation, technology change world.