我会尽量表达这个问题,而不会让它听起来像我在寻找家庭作业的答案(这只是算法的练习问题)。您有一个数字数组,其中每个值最多可以出现在2x1,3,5,5,1,2,3中,检查从一个值到另一个实例的和(5 +2+ 5) (2 +5+1+ 2)iterate through the array (for i=1 to n)
iterate through the remaining array (for j=i+between those two points (for
我想得到图的最大匹配度。现在,我使用Networkx中的算法:nx.algorithms.bipartite.matching.hopcroft_karp_matching(G) 然而,我在SNAPenter link descriptionhere中没有找到类似的算法。如何使用NetworKit/SNAP来获得图的最大匹配?