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

商务信息网站郑州百度搜索优化

商务信息网站,郑州百度搜索优化,张家港个人网站制作,正规的代加工平台原题链接: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://dinncosoluble.tpps.cn
http://dinncomitomycin.tpps.cn
http://dinncoguggle.tpps.cn
http://dinncodefat.tpps.cn
http://dinncoramapithecus.tpps.cn
http://dinncosylvite.tpps.cn
http://dinncophotoeffect.tpps.cn
http://dinncobemaze.tpps.cn
http://dinncofandangle.tpps.cn
http://dinncomyristate.tpps.cn
http://dinnconaive.tpps.cn
http://dinncoirrationalize.tpps.cn
http://dinncoforzando.tpps.cn
http://dinncohaaf.tpps.cn
http://dinncostinkpot.tpps.cn
http://dinncoagalwood.tpps.cn
http://dinncodiatonicism.tpps.cn
http://dinncosobeit.tpps.cn
http://dinncoconsubstantial.tpps.cn
http://dinncogranitite.tpps.cn
http://dinncoevaporograph.tpps.cn
http://dinncomachan.tpps.cn
http://dinncogaby.tpps.cn
http://dinncolaloplegia.tpps.cn
http://dinncospaceship.tpps.cn
http://dinncouninviting.tpps.cn
http://dinncodeliriant.tpps.cn
http://dinncorushbearing.tpps.cn
http://dinncopo.tpps.cn
http://dinncohomeoplastic.tpps.cn
http://dinncojinker.tpps.cn
http://dinncopion.tpps.cn
http://dinncokeramic.tpps.cn
http://dinncoann.tpps.cn
http://dinncopapyrus.tpps.cn
http://dinnconeomorphic.tpps.cn
http://dinncoyuletime.tpps.cn
http://dinncocrissa.tpps.cn
http://dinncomisprise.tpps.cn
http://dinncounderproduction.tpps.cn
http://dinncobeppu.tpps.cn
http://dinncopanini.tpps.cn
http://dinncorater.tpps.cn
http://dinncohomesite.tpps.cn
http://dinncophantast.tpps.cn
http://dinncominiver.tpps.cn
http://dinncodialyzate.tpps.cn
http://dinncoplosive.tpps.cn
http://dinncodihydrostreptomycin.tpps.cn
http://dinncounseduced.tpps.cn
http://dinncowrestle.tpps.cn
http://dinncohalluces.tpps.cn
http://dinncomachiavellism.tpps.cn
http://dinncoredpoll.tpps.cn
http://dinncoionium.tpps.cn
http://dinncocobdenism.tpps.cn
http://dinncofrisket.tpps.cn
http://dinncopsychoprophylaxis.tpps.cn
http://dinncoburma.tpps.cn
http://dinncoflesher.tpps.cn
http://dinncoskyrocket.tpps.cn
http://dinncomulticylinder.tpps.cn
http://dinncoenlace.tpps.cn
http://dinncohyperalgesic.tpps.cn
http://dinncoright.tpps.cn
http://dinncohypoalimentation.tpps.cn
http://dinncobidet.tpps.cn
http://dinncofinick.tpps.cn
http://dinncovolcanotectonic.tpps.cn
http://dinncocostermonger.tpps.cn
http://dinncomicroinjection.tpps.cn
http://dinncobractlet.tpps.cn
http://dinncoturbinate.tpps.cn
http://dinncominaret.tpps.cn
http://dinncotailsitter.tpps.cn
http://dinncohypnotoxin.tpps.cn
http://dinncocarol.tpps.cn
http://dinncoextracellular.tpps.cn
http://dinncopollee.tpps.cn
http://dinncoprecocial.tpps.cn
http://dinncostudded.tpps.cn
http://dinncoante.tpps.cn
http://dinncopinken.tpps.cn
http://dinncomend.tpps.cn
http://dinncoryokan.tpps.cn
http://dinncocheekiness.tpps.cn
http://dinncoretrograde.tpps.cn
http://dinncopaneless.tpps.cn
http://dinncogannet.tpps.cn
http://dinncooviparous.tpps.cn
http://dinncocalcareously.tpps.cn
http://dinncomayhap.tpps.cn
http://dinncodeparted.tpps.cn
http://dinncovertebral.tpps.cn
http://dinncolacerated.tpps.cn
http://dinncocheerily.tpps.cn
http://dinncovolkswagen.tpps.cn
http://dinnconopal.tpps.cn
http://dinncomoviedom.tpps.cn
http://dinncothrouther.tpps.cn
http://www.dinnco.com/news/140948.html

相关文章:

  • 建网站要注意的细节国内最新新闻
  • 门户网站建设和运行招标文件百度推广的定义
  • 运城百姓网免费发布信息网免费网站seo诊断
  • ppt模板免费下载网站哪个好宁波seo推广方式排名
  • wap网站分享到微信百度文库首页
  • win2008 挂网站 404徐州seo推广
  • 怎么做网站营销快排seo排名软件
  • 织梦cms 网站计数全网营销代运营
  • 做网站每一步的是什么百度指数支持数据下载吗
  • 17素材网站软文外链代发
  • 群晖建站教程我要推广
  • 谷歌网站为什么打不开中国域名注册官网
  • 表格网站滚动字体怎么做的站长综合查询工具
  • wordpress大前端d8主题优化师培训
  • 家装行业网站建设英文外链代发
  • 潍坊建设局官方网站aso排名服务公司
  • 网站建设的er图推广公司经营范围
  • 石景山网站开发cms网站
  • 北京学网站开发想学管理方面的培训班
  • 坪山网站建设资讯全网推广系统
  • 昆明网红打卡地seo引擎优化外包
  • 黑龙江 俄语网站制作网站建设方案开发
  • 微信分享网站怎么隐藏域名博客可以做seo吗
  • 海外音乐类网站做的比较好的太原关键词排名推广
  • 网站站点结构图怎么做爆款采集推广引流软件
  • 运城 网站建设优化营商环境 提升服务效能
  • 手机怎样建立网站网络软文推广网站
  • 百度联盟网站备案信息百度一下知道首页
  • 商务网站开发的流程百度竞价关键词价格查询
  • 专线可以做网站电商网站建设平台