递归写法import java.util.*; /** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ public class Solution { private static int index = 0; private TreeNode reConstructBinaryTree(int [] pre,int [] vin, int left, int rig...