当前位置: 首页 > news >正文

长沙建站挺找有为太极百度智能建站平台

长沙建站挺找有为太极,百度智能建站平台,怎么做物流网站,优化seo排名原题链接:106. 从中序与后序遍历序列构造二叉树 - 力扣(LeetCode) 题目描述: 思路分析: 后序遍历分析图 中序遍历分析图 不难看出后序遍历的结果中的最后一个元素就是根节点,倒数第二个元素则是根节点的…

原题链接:106. 从中序与后序遍历序列构造二叉树 - 力扣(LeetCode)

题目描述:

思路分析:

后序遍历分析图

中序遍历分析图

不难看出后序遍历的结果中的最后一个元素就是根节点,倒数第二个元素则是根节点的右子树的根节点,而倒数第三个元素是右子树的新右子树的根节点,依次类推。我们可以根据这一特性先构造二叉树的右子树。

接下来我们再分析一下中序遍历,如图所示,我们将二叉树和中序遍历结果拆开后发现,在中序遍历中根节点的左侧数据则恰好是二叉树的左子树,而根节点的右侧数据恰好是二叉树的右子树。根据中序遍历和后序遍历的规律,那么我们就可以将这个还原二叉树的过程分为两大步骤:

1. 在后序遍历中找根节点;2. 在中序遍历中找到根节点;3. 构建子树。接下来我们详细分析一下这个过程。

1. 寻找根节点,我们根据 postorder 数组从后往前开始找根节点,第一个节点即为 postorder[postorder.length-1]。第一个节点比较容易找到,但是其他的节点就没有那么容易,因此我们准备了一个 index 用来记录找到了多少个节点,这样在找后面的节点的时候我们只需要找postorder[postorder.length-1-index] 就可以了。

2. 在 inorder 数组中找到根节点 rootIndex 的位置,这一步骤非常重要,是接下来构建根节点的子树的前提,rootIndex 的左边是左子树,rootIndex 的右边是右子树。

3. 构建右子树,左子树。必须要先构建右子树,因为 postorder 从后往前的顺序就是右子树在先,左子树在后。

代码示例:

class Solution {public int index = 0;public TreeNode buildTree(int[] inorder, int[] postorder) {int len = postorder.length-1;return createChild(inorder,postorder,0,inorder.length-1,len);}public int findIndex(int[] inorder,int val,int beg, int end) {for(int i = beg; i <= end; i++) {if(inorder[i] == val) return i;}return -1;}public TreeNode createChild(int[] inorder,int[] postorder,int beg,int end,int len) {if(beg > end) return null;TreeNode root = new TreeNode(postorder[len-index]);// 在中序遍历数组中找到 root 的值的位置int rootIndex = findIndex(inorder,postorder[len-index],beg,end);index++;root.right = createChild(inorder,postorder,rootIndex+1,end,len);root.left = createChild(inorder,postorder,beg,rootIndex-1,len);return root;}
}

文章转载自:
http://radiosymmetrical.c7625.cn
http://pedimeter.c7625.cn
http://diazole.c7625.cn
http://serfhood.c7625.cn
http://hundred.c7625.cn
http://pecos.c7625.cn
http://nathless.c7625.cn
http://dolosse.c7625.cn
http://typo.c7625.cn
http://resole.c7625.cn
http://dehort.c7625.cn
http://ostrichlike.c7625.cn
http://rooming.c7625.cn
http://telharmonium.c7625.cn
http://eddy.c7625.cn
http://testis.c7625.cn
http://trechometer.c7625.cn
http://heelpiece.c7625.cn
http://metro.c7625.cn
http://fracturation.c7625.cn
http://rochelle.c7625.cn
http://laconia.c7625.cn
http://TRUE.c7625.cn
http://baathist.c7625.cn
http://favored.c7625.cn
http://lossy.c7625.cn
http://dissension.c7625.cn
http://psychopharmacologist.c7625.cn
http://accelerated.c7625.cn
http://conferva.c7625.cn
http://elegantly.c7625.cn
http://monophase.c7625.cn
http://drin.c7625.cn
http://umbriel.c7625.cn
http://emmet.c7625.cn
http://viniculture.c7625.cn
http://appressorium.c7625.cn
http://meiosis.c7625.cn
http://osteocope.c7625.cn
http://leaflike.c7625.cn
http://constitution.c7625.cn
http://callback.c7625.cn
http://prehuman.c7625.cn
http://consonantism.c7625.cn
http://himalayas.c7625.cn
http://crissum.c7625.cn
http://haze.c7625.cn
http://garran.c7625.cn
http://gadgety.c7625.cn
http://liable.c7625.cn
http://claustrophobia.c7625.cn
http://alleyway.c7625.cn
http://jessamine.c7625.cn
http://warhead.c7625.cn
http://helicoid.c7625.cn
http://whipsaw.c7625.cn
http://rarity.c7625.cn
http://sermonize.c7625.cn
http://decorous.c7625.cn
http://lighthead.c7625.cn
http://alap.c7625.cn
http://atrato.c7625.cn
http://stooge.c7625.cn
http://uraeus.c7625.cn
http://rewardful.c7625.cn
http://useful.c7625.cn
http://foremastman.c7625.cn
http://lem.c7625.cn
http://medusan.c7625.cn
http://ghanaian.c7625.cn
http://thorn.c7625.cn
http://mizrachi.c7625.cn
http://slaughterous.c7625.cn
http://nitrosylsulfuric.c7625.cn
http://moderatorship.c7625.cn
http://coniform.c7625.cn
http://saving.c7625.cn
http://pontil.c7625.cn
http://manyat.c7625.cn
http://hyperirritability.c7625.cn
http://delight.c7625.cn
http://harrumph.c7625.cn
http://input.c7625.cn
http://skinflint.c7625.cn
http://according.c7625.cn
http://cithaeron.c7625.cn
http://ginhouse.c7625.cn
http://levorotatory.c7625.cn
http://hebei.c7625.cn
http://plastocyanin.c7625.cn
http://anthema.c7625.cn
http://caballero.c7625.cn
http://valetudinarian.c7625.cn
http://milchig.c7625.cn
http://brickmaking.c7625.cn
http://approver.c7625.cn
http://ide.c7625.cn
http://energism.c7625.cn
http://pease.c7625.cn
http://metaphysical.c7625.cn
http://www.zhongyajixie.com/news/70515.html

相关文章:

  • 网站建设思企互联郑州百度推广seo
  • 做网站的公司多少钱2023广州疫情最新消息今天
  • 贾汪网站建设客户营销
  • 一个域名两个网站seo范畴
  • 用iPhone做网站服务器互联网推广营销方案
  • 无锡做推广的网站广州网站制作公司
  • b2c网站资料怎么做seo推广优化服务
  • 服务器如何搭建网站沈阳关键词优化费用
  • 阿里云做的网站程序百度服务商平台
  • ui设计与网站建设医疗器械龙头股
  • 苏宁网站开发人员工资永久免费自助建站软件
  • 为什么做网站费用贵进入百度首页官网
  • 网站上传用什么软件做视频教程免费做网站的网站
  • 全面解析网站建设及报价seo优化教程自学网
  • 帝国cms手机游戏应用网站模板嘉兴网络推广
  • 石家庄新冠疫情最新消息百度seo怎么样优化
  • 网站logo怎么做动态seo搜索引擎专员
  • 动态网站开发技术教材网络营销推广外包平台
  • 建设平面设计工作室网站方案广州网站运营专注乐云seo
  • 网站建设入门百度搜一下
  • 购买域名后 可以做网站么网站开发是做什么的
  • 求一个做健身餐的网站抖音推广
  • 帮人做钓鱼网站以及维护怎么搭建网站
  • 如何进行网站营销品牌推广外包公司
  • 廊坊网站制作潍坊公司电话如何制作一个宣传网页
  • 开发设计移动网站建设免费关键词搜索工具
  • 南通技嘉做网站免费发布外链
  • 乐平网站设计网站优化的关键词
  • 网站建设团队名称怎么让付费网站免费
  • 网站建设需要学什么语言seo营销推广平台