Python解法: 前序遍历pre:中左右;中序遍历tin: 左中右这个出错的点在于:如果pre为空的时候,应该直接return None而不是return TreeNode(None) class Solution: # 返回构造的TreeNode根节点 def reConstructBinaryTree(self, pre, tin): # write code here # pre:中左右;tin: 左中右 if len(pre) == 0: return None node = T...