title: '算法:重建二叉树' cover: https://img.paulzzh.com/touhou/random?7 categories: 算法题目 date: 1996-07-27 08:00:02 tags: [算法题目, 二叉树]
<br/>
<!--more-->输入某二叉树的前序遍历和中序遍历的结果,请重建出该二叉树。
假设输入的前序遍历和中序遍历的结果中都不含重复的数字
例如:
输入前序遍历序列{1,2,4,7,3,5,6,8}和中序遍历序列{4,7,2,1,5,3,8,6},则重建二叉树并返回。
根据二叉树前序遍历和中序遍历的特征进行重建, 具体过程为:
即使用类似于自顶向下的归并排序对二叉树进行重构;
例如:
前序序列{1,2,4,7,3,5,6,8} = pre
中序序列{4,7,2,1,5,3,8,6} = in
public class Solution {
public TreeNode reConstructBinaryTree(int[] pre, int[] in) {
return helper(pre, 0, pre.length - 1, in, 0, in.length - 1);
}
public TreeNode helper(int[] pre, int startPre, int endPre, int[] in, int startIn, int endIn) {
if (startIn > endIn || startPre > endPre) return null;
// 先序遍历节点
TreeNode curRoot = new TreeNode(pre[startPre]);
for (int i = startIn; i <= endIn; ++i) {
// 找到中序遍历节点, 此节点左右即为curRoot的左右节点
if (in[i] == curRoot.val) {
// 对于左子树而言
// 中序遍历子树范围: [startIn, i - 1]
// 先序遍历子树范围: [startPre + 1, startPre + 1 + (i - 1 - startIn)]
curRoot.left = helper(pre, startPre + 1, startPre + i - startIn, in, startIn, i - 1);
// 右子树同理
curRoot.right = helper(pre, i - startIn + startPre + 1, endPre, in, i + 1, endIn);
break;
}
}
return curRoot;
}
}