摘要: 1 import random 2 class BST(): 3 left = None 4 right = None 5 data = None 6 def __init__(self, data): 7 self.data = data 8 # 插入操作 9 def BSTInsert(prev 阅读全文
posted @ 2020-03-04 17:38 wkfxm 阅读(654) 评论(0) 推荐(0) 编辑