摘要: 一、BTree 1 class BinTreeNode: 2 def __init__(self, data): 3 self.data = data 4 self.lchild = None 5 self.rchild = None 6 7 8 k = BinTreeNode('K') 9 g = 阅读全文
posted @ 2017-09-23 09:28 willianflasky 阅读(137) 评论(0) 推荐(0) 编辑