摘要: 1 # 并查集实现 2 class Node: 3 pass 4 5 class UnionFindSet: 6 def __init__(self, nodes): 7 self.fatherDict = dict() 8 self.sizeDict = dict() 9 for node in nodes: ... 阅读全文
posted @ 2018-06-05 22:25 icekx 阅读(1221) 评论(0) 推荐(0) 编辑