首页 > 代码库 > Construct Binary Tree from Preorder and Inorder Traversal leetcode java
Construct Binary Tree from Preorder and Inorder Traversal leetcode java
题目:
Given preorder and inorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
题解:
1 / \ 2 3 / \ / \ 4 5 6 7
对于上图的树来说,
index: 0 1 2 3 4 5 6
先序遍历为: 1 2 4 5 3 6 7
中序遍历为: 4 2 5 1 6 3 7
为了清晰表示,我给节点上了颜色,红色是根节点,蓝色为左子树,绿色为右子树。
可以发现的规律是:
1. 先序遍历的从左数第一个为整棵树的根节点。
2. 中序遍历中根节点是左子树右子树的分割点。
再看这个树的左子树:
先序遍历为: 2 4 5
中序遍历为: 4 2 5
依然可以套用上面发现的规律。
右子树:
先序遍历为: 3 6 7
中序遍历为: 6 3 7
也是可以套用上面的规律的。
所以这道题可以用递归的方法解决。
具体解决方法是:
通过先序遍历找到第一个点作为根节点,在中序遍历中找到根节点并记录index。
因为中序遍历中根节点左边为左子树,所以可以记录左子树的长度并在先序遍历中依据这个长度找到左子树的区间,用同样方法可以找到右子树的区间。
递归的建立好左子树和右子树就好。
代码如下:
1 public TreeNode buildTree(int[] preorder, int[] inorder) {
2 int preLength = preorder.length;
3 int inLength = inorder.length;
4 return buildTree(preorder, 0, preLength-1, inorder, 0, inLength-1);
5 }
6
7 public TreeNode buildTree(int[] pre, int preStart, int preEnd, int[] in, int inStart, int inEnd){
8 if(inStart > inEnd || preStart > preEnd)
9 return null;
10
11 int rootVal = pre[preStart];
12 int rootIndex = 0;
13 for(int i = inStart; i <= inEnd; i++){
14 if(in[i] == rootVal){
15 rootIndex = i;
16 break;
17 }
18 }
19
20 int len = rootIndex - inStart;
21 TreeNode root = new TreeNode(rootVal);
22 root.left = buildTree(pre, preStart+1, preStart+len, in, inStart, rootIndex-1);
23 root.right = buildTree(pre, preStart+len+1, preEnd, in, rootIndex+1, inEnd);
24
25 return root;
26 }
2 int preLength = preorder.length;
3 int inLength = inorder.length;
4 return buildTree(preorder, 0, preLength-1, inorder, 0, inLength-1);
5 }
6
7 public TreeNode buildTree(int[] pre, int preStart, int preEnd, int[] in, int inStart, int inEnd){
8 if(inStart > inEnd || preStart > preEnd)
9 return null;
10
11 int rootVal = pre[preStart];
12 int rootIndex = 0;
13 for(int i = inStart; i <= inEnd; i++){
14 if(in[i] == rootVal){
15 rootIndex = i;
16 break;
17 }
18 }
19
20 int len = rootIndex - inStart;
21 TreeNode root = new TreeNode(rootVal);
22 root.left = buildTree(pre, preStart+1, preStart+len, in, inStart, rootIndex-1);
23 root.right = buildTree(pre, preStart+len+1, preEnd, in, rootIndex+1, inEnd);
24
25 return root;
26 }
Reference:http://edwardliwashu.blogspot.com/2013/01/construct-binary-tree-from-preorder-and.html
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。