public TreeNode reConstructBinaryTree(int [] pre,int [] in) { if (pre==null || in==null) return null; return dfs(pre,0,pre.length-1,in,0,in.length-1); } private TreeNode dfs(int[] pre, int ps, int pe, int[] in, int ins, int ine) { //一般发生在pre下标ps或者pe的值处于in在区间ins和ine的两...