Minimal spanning tree algorithm in parallel

I know some minimal spanning tree algorithms: Boruvka, Prim, and Kruskal. Which of them can be implemented in parallel?

Thanks!

+8
algorithm parallel-processing graph-algorithm
source share
1 answer

Of these 3 algorithms, the Boruvka algorithm can be easily parallelized.

A quote from the description of the Boruvka algorithm on algoritmy.net :

A significant advantage of the BorΕ―vka algorithm is that it can be easily parallelized, since the choice of the cheapest outgoing edge for each component is completely independent of the choice made by other components.

+4
source share

All Articles