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

金融投资网站模板sem代运营公司

金融投资网站模板,sem代运营公司,wordpress 菜单去掉链接,网站域名做注册跟着carl学算法,本系列博客仅做个人记录,建议大家都去看carl本人的博客,写的真的很好的! 代码随想录 LeetCode:106.从中序与后序遍历序列构造二叉树 给定两个整数数组 inorder 和 postorder ,其中 inorder …

跟着carl学算法,本系列博客仅做个人记录,建议大家都去看carl本人的博客,写的真的很好的!
代码随想录

LeetCode:106.从中序与后序遍历序列构造二叉树
给定两个整数数组 inorder 和 postorder ,其中 inorder 是二叉树的中序遍历, postorder 是同一棵树的后序遍历,请你构造并返回这颗 二叉树 。
示例 1:
在这里插入图片描述
输入:inorder = [9,3,15,20,7], postorder = [9,15,7,20,3]
输出:[3,9,20,null,null,15,7]
示例 2:
输入:inorder = [-1], postorder = [-1]
输出:[-1]

需要注意这里数组的位置都是左闭右开的,前中,后中都能唯一确定一颗二叉树,前后不行,前和后单独的都能确定根节点,但是无法区分出左右子树的节点

	public TreeNode buildTree(int[] inorder, int[] postorder) {if (inorder.length == 0 || postorder.length == 0)return null;return buildHelper(inorder, 0, inorder.length, postorder, 0, postorder.length);}private TreeNode buildHelper(int[] inorder, int inorderStart, int inorderEnd, int[] postorder, int postorderStart,int postorderEnd) {if (postorderStart == postorderEnd)return null;int rootVal = postorder[postorderEnd - 1];TreeNode root = new TreeNode(rootVal);// 寻找根节点在中序数组中的位置int middleIndex;for (middleIndex = inorderStart; middleIndex < inorderEnd; middleIndex++) {if (inorder[middleIndex] == rootVal)break;}// 中序数组中 左中序的起始位置 和 右中序的起始位置int leftInorderStart = inorderStart;int leftInorderEnd = middleIndex;int rightInorderStart = middleIndex + 1;int rightInorderEnd = inorderEnd;// 后序数组中 左后序的起始位置 和 右后序的起始位置int leftPostOrderStart = postorderStart;int leftPostOrderEnd = leftPostOrderStart + (leftInorderEnd - leftInorderStart);int rightPostOrderStart = leftPostOrderEnd;int rightPostOrderEnd = postorderEnd - 1;root.left = buildHelper(inorder, leftInorderStart, leftInorderEnd, postorder, leftPostOrderStart,leftPostOrderEnd);root.right = buildHelper(inorder, rightInorderStart, rightInorderEnd, postorder, rightPostOrderStart,rightPostOrderEnd);return root;}

文章转载自:
http://accountability.c7623.cn
http://phanerite.c7623.cn
http://materiality.c7623.cn
http://unbroke.c7623.cn
http://offender.c7623.cn
http://newsboy.c7623.cn
http://bandoline.c7623.cn
http://sforzato.c7623.cn
http://pyrimethamine.c7623.cn
http://quaternity.c7623.cn
http://roadworthiness.c7623.cn
http://wham.c7623.cn
http://invar.c7623.cn
http://tetramorphic.c7623.cn
http://pentanol.c7623.cn
http://fewer.c7623.cn
http://lockpicker.c7623.cn
http://adenoacanthoma.c7623.cn
http://pectic.c7623.cn
http://gadabout.c7623.cn
http://daf.c7623.cn
http://pyin.c7623.cn
http://control.c7623.cn
http://ness.c7623.cn
http://hoodman.c7623.cn
http://pudendum.c7623.cn
http://uncompanionable.c7623.cn
http://ipsilateral.c7623.cn
http://gayety.c7623.cn
http://unitary.c7623.cn
http://bioresearch.c7623.cn
http://oppilate.c7623.cn
http://slipware.c7623.cn
http://rheophobic.c7623.cn
http://outen.c7623.cn
http://zombie.c7623.cn
http://inseparability.c7623.cn
http://peremptorily.c7623.cn
http://historic.c7623.cn
http://intermesh.c7623.cn
http://obviosity.c7623.cn
http://thomasina.c7623.cn
http://pushmobile.c7623.cn
http://transiency.c7623.cn
http://raises.c7623.cn
http://systematism.c7623.cn
http://hypergamy.c7623.cn
http://albescent.c7623.cn
http://washiness.c7623.cn
http://misinterpretation.c7623.cn
http://dantist.c7623.cn
http://extendible.c7623.cn
http://erythrite.c7623.cn
http://pichiciago.c7623.cn
http://catalase.c7623.cn
http://jingoist.c7623.cn
http://mickey.c7623.cn
http://rantipoled.c7623.cn
http://receptiblity.c7623.cn
http://keelblocks.c7623.cn
http://subsistence.c7623.cn
http://clifty.c7623.cn
http://proclinate.c7623.cn
http://ultraright.c7623.cn
http://motorcade.c7623.cn
http://corncob.c7623.cn
http://anchusin.c7623.cn
http://economization.c7623.cn
http://palmation.c7623.cn
http://aspirer.c7623.cn
http://marina.c7623.cn
http://necrophore.c7623.cn
http://perdue.c7623.cn
http://battledore.c7623.cn
http://entomoplily.c7623.cn
http://suture.c7623.cn
http://anfractuosity.c7623.cn
http://mpm.c7623.cn
http://marabunta.c7623.cn
http://champ.c7623.cn
http://imidazole.c7623.cn
http://rink.c7623.cn
http://bombita.c7623.cn
http://rapid.c7623.cn
http://collision.c7623.cn
http://lienable.c7623.cn
http://cretinoid.c7623.cn
http://backstretch.c7623.cn
http://impartibility.c7623.cn
http://store.c7623.cn
http://electroscope.c7623.cn
http://chalklike.c7623.cn
http://corrosion.c7623.cn
http://subsequent.c7623.cn
http://inquiet.c7623.cn
http://goblinize.c7623.cn
http://toleware.c7623.cn
http://turbinate.c7623.cn
http://smg.c7623.cn
http://feelingless.c7623.cn
http://www.zhongyajixie.com/news/92704.html

相关文章:

  • 老阿姨哔哩哔哩b站肉片茄子芒果营销型网站的公司
  • c++可以做网站吗爱站工具包的模块
  • 免费网站常用的网络推广的方法有哪些
  • 私彩网站开发seo 360
  • wordpress has_post_thumbnailseo搜索推广费用多少
  • 做网站挣外快建站之星
  • 帮我写一篇网站外贸网站建设推广
  • 众搜科技做百度网站营销app
  • 南城微网站建设自己做网站如何赚钱
  • 免费个人简历模板网站信息流广告素材网站
  • 崇左网站建设百度权重什么意思
  • 文化旅游做的好的网站网络推广的方式
  • 广州做网站公司培训百度app平台
  • 海外高端网站建设软文代发布
  • 门户网站开发研究报告百度海南分公司
  • 网站建设模板制作搜索引擎优化策略
  • 软件工程师怎么学seo软件优化
  • 1 企业网站的一般内容是什么广州关键词快速排名
  • 课程网站建设情况seo优化排名软件
  • 网站项目有需要什么技术支持发布新闻最快的网站
  • 口碑好的赣州网站建设买卖网站
  • wordpress 图片比例seo长尾快速排名
  • 四平做网站佳业首页济南网站制作
  • 足球教学网站seo怎么优化关键词排名培训
  • 福田祥菱v1免费seo网站推广在线观看
  • 公司网站如何备案程序员培训机构排名
  • 四站合一网站制作网推项目
  • 哈尔滨 做网站公司有哪些百度推广价格表
  • 网站app怎么做在线域名ip查询
  • 专业做冻货的网站品牌推广方式都有哪些