/* function TreeNode(x) { this.val = x; this.left = null; this.right = null; } */ function reConstructBinaryTree(pre, vin) { if (!pre.length||!vin.length) return null let root=new TreeNode(pre[0]) let leftSize=vin.indexOf(root.val) // let preLeft=pre.slice(1,1+leftSize) // ...