摘要: class Graph: def __init__(self): self.V = []class Vertex: def __init__(self, x): self.key = x self.color = 'white' s... 阅读全文
posted @ 2015-02-10 14:59 南郭子綦 阅读(711) 评论(0) 推荐(0) 编辑
摘要: class Graph: def __init__(self): self.V = [] self.w = {}class Vertex: def __init__(self, x): self.key = x self.color... 阅读全文
posted @ 2015-02-10 14:54 南郭子綦 阅读(1341) 评论(0) 推荐(0) 编辑