草庐IT

Hopcroft

全部标签

python - Python 中的 Hopcroft–Karp 算法

我正在尝试实现HopcroftKarpalgorithm在Python中使用networkx作为图形表示。目前我是这样的:#AlgorithmsforbipartitegraphsimportnetworkxasnximportcollectionsclassHopcroftKarp(object):INFINITY=-1def__init__(self,G):self.G=Gdefmatch(self):self.N1,self.N2=self.partition()self.pair={}self.dist={}self.q=collections.deque()#initforv