当前位置:网站首页>[牛客网刷题 Day4] JZ55 二叉树的深度
[牛客网刷题 Day4] JZ55 二叉树的深度
2022-07-05 08:39:00 【strawberry47】
题目:
输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度,根节点的深度视为 1 。
思路:
第一次遇到树的题目,有一点点懵逼,不太懂他的构建过程
第一反应是用递归,因为结束的条件很容易想到嘛:左节点右节点都为空
but,我不知道应该怎么移动根节点耶。。。
答案:
看了答案,也用到了递归的思想:
有点懵。。递归好难啊o(╥﹏╥)o
class Solution:
def TreeDepth(self , pRoot: TreeNode) -> int:
# write code here
if not pRoot:
return 0
left = right =0
if pRoot.left:
left = self.TreeDepth(pRoot.left)
if pRoot.right:
right = self.TreeDepth(pRoot.right)
return max([left,right])+1
还可以用到队列的思想:
import queue
class Solution:
def maxDepth(self , root: TreeNode) -> int:
# 空节点没有深度
if not root:
return 0
# 队列维护层次后续节点
q= queue.Queue()
# 根入队
q.put(root)
# 记录深度
res = 0
# 层次遍历
while not q.empty():
# 记录当前层有多少节点
n = q.qsize()
# 遍历完这一层,再进入下一层
for i in range(n):
node = q.get()
# 添加下一层的左右节点
if node.left:
q.put(node.left)
if node.right:
q.put(node.right)
# 深度加1
res += 1
return res
队列的思路容易理解一些,就是将每一层都存进去,看看能存多少层,就加一
边栏推荐
- 实例006:斐波那契数列
- Cmder of win artifact
- Pytorch entry record
- 实例002:“个税计算” 企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%;利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可提成7.
- Numpy 小坑:维度 (n, 1) 和 维度 (n, ) 数组相加运算后维度变为 (n, n)
- Meizu Bluetooth remote control temperature and humidity access homeassistant
- Array integration initialization (C language)
- 每日一题——输入一个日期,输出它是该年的第几天
- [three tier architecture]
- How to manage the performance of R & D team?
猜你喜欢
随机推荐
Agile project management of project management
Example 006: Fibonacci series
GEO数据库中搜索数据
Guess riddles (2)
STM32 --- configuration of external interrupt
Cinq détails de conception du régulateur de tension linéaire
Lori remote control commissioning record
猜谜语啦(8)
[nas1] (2021cvpr) attentivenas: improving neural architecture search via attentive sampling (unfinished)
实例005:三数排序 输入三个整数x,y,z,请把这三个数由小到大输出。
【日常训练】1200. 最小绝对差
Google sitemap files for rails Projects - Google sitemap files for rails projects
leetcode - 445. 两数相加 II
猜谜语啦(11)
99 multiplication table (C language)
Bluebridge cup internet of things basic graphic tutorial - GPIO input key control LD5 on and off
287. Looking for repeats - fast and slow pointer
猜谜语啦(142)
亿学学堂给的证券账户安不安全?哪里可以开户
[three tier architecture and JDBC summary]