Kruskal's algorithm in C ++

I'm looking for C ++ Kruskal implementations to compare with my own ... If you know a few good ones, please share!

+2


source to share


1 answer


There boost::kruskal_minimum_spanning_tree

. The Prim algorithm also exists if you want to compare with it.



+10


source







All Articles