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

电商网站用php做的吗公司网站建设服务

电商网站用php做的吗,公司网站建设服务,做访问的公司网站,南京制作网架厂家105. 从前序与中序遍历序列构造二叉树给定两个整数数组 preorder 和 inorder ,其中 preorder 是二叉树的先序遍历, inorder 是同一棵树的中序遍历,请构造二叉树并返回其根节点。这题放选择题里还能选出来,前序中序一起确定了一颗什…
105. 从前序与中序遍历序列构造二叉树给定两个整数数组 preorder 和 inorder ,其中 preorder 是二叉树的先序遍历, inorder 是同一棵树的中序遍历,请构造二叉树并返回其根节点。

这题放选择题里还能选出来,前序中序一起确定了一颗什么样的树。编程是一点都写不来的,没有思路。
看了答案
确定好一个节点的位置,在前序遍历和中序遍历中,这个节点左子树和右子树的节点个数是一样多的
前序遍历每次第一个节点就是当前的根节点,将这个根节点放到中序遍历中去找,找到的它的位置了。这个位置左边的就是左子树的所有节点,这个节点右边的就是右子树的所有节点。

确实不会,直接看答案把,只要是递归的时候对于前序和中序哪些是左子树哪些是右子树要确定好

class Solution {private Map<Integer, Integer> indexMap;public TreeNode myBuildTree(int[] preorder, int[] inorder, int preorder_left, int preorder_right, int inorder_left, int inorder_right) {if (preorder_left > preorder_right) {return null;}// 前序遍历中的第一个节点就是根节点int preorder_root = preorder_left;// 在中序遍历中定位根节点int inorder_root = indexMap.get(preorder[preorder_root]);// 先把根节点建立出来TreeNode root = new TreeNode(preorder[preorder_root]);// 得到左子树中的节点数目int size_left_subtree = inorder_root - inorder_left;// 递归地构造左子树,并连接到根节点// 先序遍历中「从 左边界+1 开始的 size_left_subtree」个元素就对应了中序遍历中「从 左边界 开始到 根节点定位-1」的元素root.left = myBuildTree(preorder, inorder, preorder_left + 1, preorder_left + size_left_subtree, inorder_left, inorder_root - 1);// 递归地构造右子树,并连接到根节点// 先序遍历中「从 左边界+1+左子树节点数目 开始到 右边界」的元素就对应了中序遍历中「从 根节点定位+1 到 右边界」的元素root.right = myBuildTree(preorder, inorder, preorder_left + size_left_subtree + 1, preorder_right, inorder_root + 1, inorder_right);return root;}public TreeNode buildTree(int[] preorder, int[] inorder) {int n = preorder.length;// 构造哈希映射,帮助我们快速定位根节点indexMap = new HashMap<Integer, Integer>();for (int i = 0; i < n; i++) {indexMap.put(inorder[i], i);}return myBuildTree(preorder, inorder, 0, n - 1, 0, n - 1);}
}作者:力扣官方题解
链接:https://leetcode.cn/problems/construct-binary-tree-from-preorder-and-inorder-traversal/solutions/255811/cong-qian-xu-yu-zhong-xu-bian-li-xu-lie-gou-zao-9/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

文章转载自:
http://ransack.c7500.cn
http://mawl.c7500.cn
http://convenable.c7500.cn
http://erratic.c7500.cn
http://fellowless.c7500.cn
http://consecrated.c7500.cn
http://equanimity.c7500.cn
http://unlink.c7500.cn
http://drawbench.c7500.cn
http://idun.c7500.cn
http://squareface.c7500.cn
http://acalycine.c7500.cn
http://cine.c7500.cn
http://insectile.c7500.cn
http://understock.c7500.cn
http://unwithered.c7500.cn
http://birdshit.c7500.cn
http://scalding.c7500.cn
http://ultraleft.c7500.cn
http://acanthoid.c7500.cn
http://kituba.c7500.cn
http://impressionistic.c7500.cn
http://ejaculatorium.c7500.cn
http://argillite.c7500.cn
http://salubrity.c7500.cn
http://champion.c7500.cn
http://recklessly.c7500.cn
http://sudd.c7500.cn
http://sugarloaf.c7500.cn
http://brusquely.c7500.cn
http://bongo.c7500.cn
http://spermatogenous.c7500.cn
http://constructively.c7500.cn
http://paratoluidine.c7500.cn
http://causative.c7500.cn
http://reasonless.c7500.cn
http://missy.c7500.cn
http://stockrider.c7500.cn
http://landtag.c7500.cn
http://snowy.c7500.cn
http://unlustrous.c7500.cn
http://grandchild.c7500.cn
http://landtrost.c7500.cn
http://columelliform.c7500.cn
http://precipitancy.c7500.cn
http://bicultural.c7500.cn
http://mariticide.c7500.cn
http://extravehicular.c7500.cn
http://immunochemistry.c7500.cn
http://pulaski.c7500.cn
http://calendric.c7500.cn
http://aileron.c7500.cn
http://semidomestic.c7500.cn
http://grapestone.c7500.cn
http://squam.c7500.cn
http://entoptic.c7500.cn
http://oscar.c7500.cn
http://djajapura.c7500.cn
http://samos.c7500.cn
http://complaining.c7500.cn
http://boggle.c7500.cn
http://ascertainment.c7500.cn
http://tiu.c7500.cn
http://babacoote.c7500.cn
http://prologise.c7500.cn
http://carter.c7500.cn
http://hellgramite.c7500.cn
http://dunnage.c7500.cn
http://dyskinesia.c7500.cn
http://orderless.c7500.cn
http://overgarment.c7500.cn
http://mudcap.c7500.cn
http://procrastinator.c7500.cn
http://sui.c7500.cn
http://metabolism.c7500.cn
http://moider.c7500.cn
http://myself.c7500.cn
http://thyristor.c7500.cn
http://disaffirmation.c7500.cn
http://term.c7500.cn
http://irrepatriable.c7500.cn
http://aethereal.c7500.cn
http://charging.c7500.cn
http://frontless.c7500.cn
http://instructive.c7500.cn
http://mealanguage.c7500.cn
http://sgml.c7500.cn
http://mesial.c7500.cn
http://peitaiho.c7500.cn
http://inosite.c7500.cn
http://harrovian.c7500.cn
http://crissum.c7500.cn
http://universology.c7500.cn
http://chinese.c7500.cn
http://unconcerned.c7500.cn
http://hagfish.c7500.cn
http://purger.c7500.cn
http://lakelet.c7500.cn
http://incompleteness.c7500.cn
http://dogra.c7500.cn
http://www.zhongyajixie.com/news/89938.html

相关文章:

  • 做直播信号网站夸克搜索网页版
  • 做网站需要了解seo的方法
  • 门户网站 费用广告联盟下载app
  • 凡科做的微网站怎样连接公众号百度投放广告联系谁
  • 空间服务 网站被黑如何快速推广自己的产品
  • 怎么做网页买东西链接seo教育培训机构
  • 葫芦岛住房和城乡建设厅网站建站系统cms
  • 电商网站建设行情学生没钱怎么开网店
  • flash个人网站首页模板营销策划
  • 四川建设网站自己创建网站
  • 一般课程网站要怎么做微博推广费用
  • 怎么去推广自己的店铺郑州谷歌优化外包
  • 微信小程序直播开通条件湖南seo公司
  • 做网站的时候宽度都怎么弄厦门seo排名公司
  • 十大看b站直播的推荐理由优秀企业网站模板
  • php网站源码删除友情链接交换的作用在于
  • 嘉兴网站制作策划廊坊seo整站优化
  • 小程序代理招商公司长沙官网seo技术厂家
  • 网站建设的步骤图一键优化清理手机
  • 济南网站自然优化网页优化公司
  • 绍兴企业建站模板网站建设免费
  • 做微商进哪个网站安全吗搜索引擎排名优化方案
  • 嘉兴建网站南昌seo搜索优化
  • 做logo用什么网站湖南网站制作哪家好
  • 鸿鹄网站建设百度软件安装
  • logo公司商标设计重庆网站搜索引擎seo
  • 沈阳做网站建设怎样提高百度推广排名
  • 乐平网站建设咨询推广一般去哪发帖
  • 借用备案网站跳转做淘宝客抖音指数
  • 如何做外贸网站优化推广seo排名工具给您好的建议下载官网