Construct Binary Tree from Preorder and Inorder Traversal(前序遍歷和中序遍歷樹構造二叉樹)...
問題
Given preorder and inorder traversal of a tree, construct the binary tree.
** Notice
You may assume that duplicates do not exist in the tree.
Have you met this question in a real interview? Yes
ExampleGiven in-order [1,2,3]
and pre-order [2,1,3]
, return a tree:
分析
以這個二叉樹為例,前序是1245367,中序是4251637。我們知道前序的第一個一定是根結點。所以先把1找出來,然後在中序裡邊找到1,那麼1左邊的一定是1的左子樹,1右邊的一定是1的右子樹,然後遞迴即可。裡邊需要使用到前序,中序和後序的知識,大家自行查閱資料學習。
程式碼
/**
* Definition of TreeNode:
* public class TreeNode {
* public int val;
* public TreeNode left, right;
* public TreeNode(int val) {
* this.val = val;
* this.left = this.right = null;
* }
* }
*/
public class Solution {
/**
*@param preorder : A list of integers that preorder traversal of a tree
*@param inorder : A list of integers that inorder traversal of a tree
*@return : Root of a tree
*/
public TreeNode buildTree(int[] preorder, int[] inorder) {
// write your code here
return buildTree(preorder,0,preorder.length-1,inorder,0,inorder.length-1);
}
private TreeNode buildTree(int[] preorder,int pleft,int pright, int[] inorder,int ileft,int iright){
if(pleft>pright||ileft>iright){
return null;
}
int i=preorder[pleft];
TreeNode node=new TreeNode(i);
int index=ileft;
while(inorder[index]!=i){
index++;
}
int leftLength=index-ileft;
node.left=buildTree(preorder,pleft+1,pleft+leftLength,inorder,ileft,index-1);
node.right=buildTree(preorder,pleft+leftLength+1,pright,inorder,index+1,iright);
return node;
}
}
相關文章
- Binary Tree Inorder/Preorder Traversal 返回中序和前序/遍歷二叉樹的元素集合二叉樹
- LintCode 前序遍歷和中序遍歷樹構造二叉樹二叉樹
- Construct Binary Tree from Preorder and Inorder TraversalStruct
- 二叉樹建立,前序遍歷,中序遍歷,後序遍歷 思路二叉樹
- 二叉樹的建立、前序遍歷、中序遍歷、後序遍歷二叉樹
- 【LeetCode 144_二叉樹_遍歷】Binary Tree Preorder TraversalLeetCode二叉樹
- 二叉樹:構造二叉樹(通過前序和中序遍歷)、映象翻轉、層次遍歷二叉樹
- 【LeetCode】Construct Binary Tree from Preorder and Inorder Traversal 根據先序序列和中序序列恢復二叉樹LeetCodeStruct二叉樹
- 根據二叉樹的前序遍歷和中序遍歷輸出二叉樹;二叉樹
- Leetcode Construct Binary Tree from Preorder and Inorder TraversalLeetCodeStruct
- 根據前序遍歷序列、中序遍歷序列,重建二叉樹二叉樹
- 資料結構與演算法——二叉樹的前序遍歷,中序遍歷,後序遍歷資料結構演算法二叉樹
- 889. 根據前序和後序遍歷構造二叉樹二叉樹
- Construct Binary Tree from Preorder and Inorder Traversal leetcode javaStructLeetCodeJava
- 【根據前序和中序遍歷構造二叉樹】棧+迭代 || 遞迴二叉樹遞迴
- 144.二叉樹的前序遍歷145.二叉樹的後序遍歷 94.二叉樹的中序遍歷二叉樹
- PAT 1043 Is It a Binary Search Tree (25分) 由前序遍歷得到二叉搜尋樹的後序遍歷
- 中序線索二叉樹的構造和遍歷二叉樹
- Leetcode 105 Construct Binary Tree from Preorder and Inorder TraversalLeetCodeStruct
- 388,先序遍歷構造二叉樹二叉樹
- 二叉樹的前序、中序、後序三種遍歷二叉樹
- 關於二叉樹的前序遍歷、中序遍歷、刪除元素、插入元素二叉樹
- Construct Binary Tree from Inorder and Postorder TraversalStruct
- 二叉樹的前序,中序,後序遍歷方法總結二叉樹
- 從中序與後序遍歷序列構造二叉樹二叉樹
- Leetcode 889. 根據前序和後序遍歷構造二叉樹LeetCode二叉樹
- LeetCode 105. 從前序與中序遍歷序列構造二叉樹LeetCode二叉樹
- LeetCode-105-從前序與中序遍歷序列構造二叉樹LeetCode二叉樹
- 二叉樹的構造與遍歷二叉樹
- 二叉樹--後序遍歷二叉樹
- 層序遍歷二叉樹二叉樹
- 劍指offer:輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。二叉樹
- 刷題筆記:樹的前序、中序、後序遍歷筆記
- 線索二叉樹的構造和遍歷二叉樹
- 刷題系列 - 給出前序和後序遍歷佇列,構造對應二叉樹佇列二叉樹
- 二叉樹中序和後序遍歷表示式二叉樹
- 二叉樹迭代器(中序遞迴、前序和後序遍歷)演算法二叉樹遞迴演算法
- Java中用遞迴和迭代實現二叉樹的中序( InOrder )遍歷Java遞迴二叉樹