利用递归的思想完成树的重建,一个是递归截至条件:当传入list长度为0的时候停止递归;另一个是将一颗树分解成左边和右边两个部分分别递归;最后返回数就行了class Solution: # 返回构造的TreeNode根节点 def reConstructBinaryTree(self, pre, tin): # write code here if len(pre)==0: return root = TreeNode(pre[0]) for i in range(len(tin)): # 在中序中找到左...