Content deleted Content added
Nkojuharov (talk | contribs) The algorithms described was actually Jarnik's algorithm, not Boruvka's |
moravia -> bohemia (in line with minimum spanning tree) -- source, anyone? |
||
Line 1:
'''Borůvka's algorithm''' is an [[algorithm]] for finding [[minimum spanning tree]]s. It was first published in [[1926]] by [[Otakar Borůvka]] as a method of constructing an efficient electricity network for [[
Borůvka's algorithm, in pseudocode, given a connected graph ''G'', is:
Line 11:
Other algorithms for this problem include [[Prim's algorithm]] (actually discovered by [[Vojtech Jarnik]]) and [[Kruskal's algorithm]]. Faster algorithms can be obtained by combining Prim's algorithm with Borůvka's. A faster randomized version of Borůvka's algorithm due to Karger, Klein, and Tarjan runs in expected <math>O(E)</math> time. The best known minimum spanning tree algorithm by [[Bernard Chazelle]] is based on Borůvka's and runs in O(''E'' α(V)) time, where α is the inverse of the [[Ackermann function]].
[[Category:Trees (structure)]]
[[Category:Graph algorithms]]
|