通过在网上搜索,我可以找到 2(kruskal 和 prims)算法来查找最小生成树。但是这个算法
*let T be initially the set of all edges
*while there is some cycle C in T
remove edge e from T where e has the heaviest weight in C
我通过网络搜索找不到。我如何实现这个算法。我怎样才能找到每一个可能的循环?
通过在网上搜索,我可以找到 2(kruskal 和 prims)算法来查找最小生成树。但是这个算法
*let T be initially the set of all edges
*while there is some cycle C in T
remove edge e from T where e has the heaviest weight in C
我通过网络搜索找不到。我如何实现这个算法。我怎样才能找到每一个可能的循环?