0

我想获得图形的最大匹配。

现在,我使用 Networkx 中的算法:nx.algorithms.bipartite.matching.hopcroft_karp_matching(G)

但是,我没有在 SNAP enter link description here中找到类似的算法。

对于 NetworKit,我找到了这个页面:在此处输入链接描述。但我不知道如何使用它。

有任何想法吗?如何使用 NetworKit/SNAP 获得图的最大匹配?

4

1 回答 1

0

关于 NetworKit:尚未提供计算精确最大匹配的算法,但您可以使用networkit.matching.PathGrowingMatcher,它实现了 Drake 和 Hougardy [1] 的最大匹配线性时间 1/2 近似算法。您可以按如下方式使用它:

import networkit as nk

# g is your graph

# Create and run the matching algorithm
matcher = nk.matching.PathGrowingMatcher(g).run()

# Get the matching, this returns an object of type networkit.matching.Matching
matching = matcher.getMatching()

# You can parse the computed matching by using
# matching.isMatched and matching.mate, for example:
for u in g.iterNodes():
    if matching.isMatched(u):
        print(f"Node {u} is matched with node {matching.mate(u)}")

[1] https://dl.acm.org/doi/10.1016/S0020-0190%2802%2900393-9

于 2021-03-29T07:35:23.133 回答