当前位置:网站首页>剑指 Offer 07. 重建二叉树
剑指 Offer 07. 重建二叉树
2022-08-03 21:00:00 【愈努力俞幸运】
剑指 Offer 07. 重建二叉树https://leetcode.cn/problems/zhong-jian-er-cha-shu-lcof/
首先,基本的知识点要了解,可参考下面这篇文章
剑指 Offer 07. 重建二叉树https://leetcode.cn/problems/zhong-jian-er-cha-shu-lcof/
根据以上性质,可得出以下推论:
前序遍历的首元素 为 树的根节点 node 的值。
在中序遍历中搜索根节点 node 的索引 ,可将 中序遍历 划分为 [ 左子树 | 根节点 | 右子树 ] 。
根据中序遍历中的左(右)子树的节点数量,可将 前序遍历 划分为 [ 根节点 | 左子树 | 右子树 ] 。
通过以上三步,可确定 三个节点 :1.树的根节点、2.左子树根节点、3.右子树根节点。
对于树的左、右子树,仍可复用以上方法划分子树的左右子树。
class Solution:
def buildTree(self, preorder, inorder):
def recur(root,left,right):
if left>right:return
node=TreeNode(preorder[root])
i = dic[node.val]
node.left=recur(root+1,left,i-1)
node.right=recur(root+i-left+1,i+1,right)
return node
dic={}
for i in range(len(inorder)):
dic[inorder[i]]=i
return recur(0,0,len(inorder)-1)
边栏推荐
- ECCV 2022 | 清华&腾讯AI Lab提出REALY:重新思考3D人脸重建的评估方法
- 简单又有效的基本折线图制作方法
- LeetCode_Digit Statistics_Medium_400. Nth Digit
- 2021年数据泄露成本报告解读
- CLIP论文解读
- 15 years experience in software architect summary: in the field of ML, tread beginners, five hole
- 【HiFlow】经常忘记签到怎么办?使用腾讯云场景连接器每天提醒你。
- 如何使用 Jmeter获取登录token并设置为全局变量?
- 模板字符串
- Leetcode 16. Numerical integral power (power + fast recursive/iteration)
猜你喜欢
随机推荐
Leetcode 899. An orderly queue
NAACL 2022 | 具有元重加权的鲁棒自增强命名实体识别技术
ES6简介及let、var、const区别
XSS线上靶场---haozi
反射机制
Engineering Effectiveness Governance for Agile Delivery
小朋友学C语言(3):整数、浮点数、字符
ES6-箭头函数
李沐动手学深度学习V2-BERT微调和代码实现
Leetcode sword refers to Offer 15. 1 in the binary number
idea2021.1.3配置Gradle步骤
3种圆形按钮悬浮和点击事件
9月1日起我国给予多哥等16国98%税目产品零关税待遇
leetcode 231. Powers of 2
CheckBox列表项选中动画js特效
leetcode 461. Hamming Distance
Lecture topics and guest blockbuster, TDengine developers conference to promote data technology "broken"
svg+js订单确认按钮动画js特效
CLIP论文解读
win10安装及配置Gradle