Search code examples
c++performancegraph-algorithmkruskals-algorithm

Kruskal's Algorithm in C++


I am looking for C++ Kruskal implementations to benchmark against my own... If you know a few good ones, please share!


Solution

  • There's boost::kruskal_minimum_spanning_tree. Prim's algorithm is there too if you want to compare against that.