leetcode-104

104. 二叉树的最大深度

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

二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

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

示例:
给定二叉树 [3,9,20,null,null,15,7],

1
2
3
4
5
  3
/ \
9 20
/ \
15 7

返回它的最大深度 3 。

解法一

1
2
3
4
5
6
7
class Solution:
def maxDepth(self, root: TreeNode) -> int:
if not root:
return 0
a = self.maxDepth(root.left) + 1
b = self.maxDepth(root.right) + 1
return a if a > b else b

解法二:官方题解

利用bfs。

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
class Solution:
def maxDepth(self, root: TreeNode) -> int:
if not root:
return 0

ans = 0

queue = list()

queue.append(root)

while queue:
q_length = len(queue)
# 取出当前层的所有节点
for i in range(q_length):

cur = queue.pop(0)

if cur.left:
queue.append(cur.left)
if cur.right:
queue.append(cur.right)

ans += 1
return ans
作者

bd160jbgm

发布于

2021-05-26

更新于

2021-05-26

许可协议