题目描述
输入某二叉树的前序遍历和中序遍历的结果,请重建出该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。例如输入前序遍历序列{1,2,4,7,3,5,6,8}和中序遍历序列{4,7,2,1,5,3,8,6},则重建二叉树并返回。
Solution
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
import java.util.*;
public class Solution {
public TreeNode reConstructBinaryTree(int [] pre,int [] in) {
if(in == null || in.length == 0)
return null;
//建立一个hash表,记录inorder数组的值->索引的映射
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
for(int i = 0; i < in.length; i++){
map.put(in[i],i);
}
return helper(pre,0,pre.length-1,in,0,in.length-1,map);
}
public TreeNode helper(int [] pre,int ps,int pe,int [] in,int is,int ie ,Map<Integer,Integer> map){
/*
ps 前序遍历序列的开始位置
pe 前序遍历序列的结束位置
is 中序遍历序列的开始位置
ie 中序遍历序列的结束位置
map inorder数组的值->索引的映射
*/
if(ps > pe || is > ie)
return null;
//前序序列的第一个值作为root结点的值
TreeNode root = new TreeNode(pre[ps]);
int rootIndex = map.get(pre[ps]);
root.left = helper(pre,ps+1,ps+1+rootIndex-is-1,in,is,rootIndex-1,map);
root.right = helper(pre,ps+1+rootIndex-is,pe,in,rootIndex+1,ie,map);
return root;
}
}