根据先序集合找到根,再根据根,在中序集合中找到索引号,采用递归的构建子树的方法
/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ public class Solution { public TreeNode buildTree(int[] preorder, int[] inorder) { return gT(preorder, 0, preorder.length-1, inorder, 0, inorder.length-1); } private TreeNode gT(int[] preOrder, int pStart, int pEnd, int[] inOrder, int inStart, int inEnd){ if(preOrder==null || inOrder==null || preOrder.length==0 || inOrder.length==0 || inStart>inEnd || pStart>pEnd){ return null; } int childRootVal = preOrder[pStart]; TreeNode childRoot = new TreeNode(childRootVal); int childRootInOrderIndex = -1; for(int i=inStart; i<=inEnd; i++){ if(inOrder[i]==childRootVal){ childRootInOrderIndex=i; break; } } if(childRootInOrderIndex==-1){ return null; } int duration = childRootInOrderIndex-inStart; childRoot.left=gT(preOrder, pStart+1, pStart+duration, inOrder, inStart, childRootInOrderIndex-1); childRoot.right=gT(preOrder, pStart+duration+1,pEnd, inOrder, childRootInOrderIndex+1, inEnd); return childRoot; } }
相关推荐
105.construct_binary_tree_from_preorder_and_inorder_traversal从前序
java java_leetcode-105-construct-binary-tree-from-preorder-and-inorde
java java_leetcode-107-binary-tree-level-order-traversal
java java_leetcode-102-binary-tree-level-order-traversal
通过LeetCode题解的这个文件“js-leetcode题解之107-binary-tree-level-order-traversal-ii.js”,我们可以学习如何使用JavaScript编写二叉树层序遍历的变种,以及如何处理和操作队列数据结构。
2. 在LeetCode平台上,问题编号107的题目是“Binary Tree Level Order Traversal II”,它要求对给定的二叉树进行反向层级遍历,即从最后一层到第一层的顺序输出节点值。 3. 反向层级遍历算法可以通过先进行正常的...
在解决LeetCode上的0094号问题“Binary Tree Inorder Traversal”时,C语言是实现算法的常用语言之一。该题目要求设计一个算法来遍历二叉树,并按照中序遍历的方式返回遍历的结果。这不仅需要理解中序遍历的原理,还...
Javascript 的解决方案Leetcode Problems and interview problems in Javascript10 Regular Expresion Matching.js100 Same Tree.js101 Symmetric Tree.js102 Binary Tree Level Order Traversal.js103 Binary Tree ...
在LeetCode上,问题编号94的题目“Binary Tree Inorder Traversal”就是要求对给定的二叉树进行中序遍历,并返回遍历的结果。给定的二叉树用JavaScript对象来表示,每个节点的值为一个数字,节点结构包含值、左子...
leetcode是全球知名的在线编程平台,提供各种编程题目的解法,供程序员学习和练习。本文将详细解读如何使用Python解决leetcode上的“二叉树的中序遍历”问题,题目编号为094。该题目的核心是要求开发者编写代码,对...
js-leetcode题解之106-construct-binary-tree-from-inorder LeetCode第106题要求我们通过中序和后序遍历结果来重构二叉树。在JavaScript中,这是一个常见的算法问题,涉及到树的构造和递归的使用。 首先,需要理解...
由于LeetCode平台提供了一个公共的编程问题库供开发者练习和提升编程能力,因此我们选择了其中的题目编号102,即"Binary Tree Level Order Traversal"(二叉树的层序遍历)。为了解决这个问题,我们通常需要掌握队列...
对于LeetCode上编号为144的题目“Binary Tree Preorder Traversal”,我们可以采用递归或非递归的方式来解决。 首先,递归方法是前序遍历实现中最直观的一种。在递归函数中,我们首先将根节点的值添加到结果数组中...
root.right = buildTree(inorder[inorder_index + 1:], postorder) root.left = buildTree(inorder[:inorder_index], postorder) return root ``` 利用上面的递归函数,我们可以将给定的中序和后序遍历结果转化...
今天我们将详细讨论Python实现LeetCode第103题——二叉树的锯齿形层序遍历(Binary Tree Zigzag Level Order Traversal)的解决方案。 二叉树的锯齿形层序遍历要求我们以不同于传统层序遍历的方式输出树节点值,即...
在编写Python代码解决LeetCode上144题时,我们可以通过递归或迭代的方式实现二叉树的前序遍历。 使用递归方法时,通常定义一个辅助函数,该函数接收当前节点作为参数。如果当前节点为空,则直接返回;否则,首先...
LeetCode上的题目“105-construct-binary-tree-from-preorder”要求参与者根据前序遍历的序列构建一棵二叉树。这对于理解二叉树的性质和前序遍历算法至关重要。 前序遍历是二叉树遍历方式之一,按照“根节点-左子树...
[105_construct-binary-tree-from-preorder-and-inorder-traversal.cpp] [106_construct-binary-tree-from-inorder-and-postorder-traversal.cpp] [107_binary-tree-level-order-traversal-ii.cpp] [108_convert-...
java java_leetcode-114-flatten-binary-tree-to-linked-list
105.construct-binary-tree-from-preorder-and-inorder-traversal (从前序与中序遍历序列构造二叉树) 106.construct-binary-tree-from-inorder-and-postorder-traversal (从中序与后序遍历序列构造二叉树) 112.path-...