Java题解 public class Solution { public TreeNode reConstructBinaryTree(int [] pre,int [] in) { int h1 = pre.length - 1; int h2 = in.length - 1; TreeNode treeNode = buildTree(pre, in, 0, h1, 0, h2); return treeNode; } /** * * @param pre 先序序列 *...