摘要: class Graph: def __init__(self): self.V = []class Vertex: def __init__(self, x): self.key = x self.color = 'white' s... 阅读全文
posted @ 2015-03-16 22:32 南郭子綦 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: class Graph: def __init__(self): self.V = []class Vertex: def __init__(self, x): self.key = x self.color = 'white' s... 阅读全文
posted @ 2015-03-16 15:43 南郭子綦 阅读(1667) 评论(0) 推荐(0) 编辑
摘要: 直接寻址方式:class HashTable: def __init__(self, length): self.T = [None for i in range(length)]class Data: def __init__(self, key, satelite_da... 阅读全文
posted @ 2015-03-16 11:59 南郭子綦 阅读(601) 评论(0) 推荐(0) 编辑