python求二叉树深度 1.代码实现 class BinaryTreeNode(object): # 创建二叉树结点的函数 def __init__(self): self.data = '#' self.LChild = None self.RChild = None class BinaryTree(object): # 创建二叉树的函数 def CreateBinaryTree(self, Root): data = input('->') if data == '#':