利用preorder和postorder list构建binary tree

确立以一个list为主,另一个为辅。这题以preorder为主,preorder的难点在于不知道什么时候是右节点。但是我们可以结合postorder得到左leave节点,从而可以开始构建右节点