Content deleted Content added
m typo fixing, genfixes, typos fixed: et. al. → ''et al.'' using AWB |
|||
Line 1:
The '''distributed minimum spanning tree (MST)''' problem involves the construction of a [[minimum spanning tree]] by a [[distributed algorithm]], in a network where nodes communicate by message passing. It is radically different from the classical sequential problem, although the most basic approach resembles [[Borůvka's algorithm]]. One important application of this problem is to find a tree that can be used for [[
The problem was first suggested and solved in <math>O(V \log V)</math> time in 1983 by Gallager ''et
</ref> and finally<ref>Juan Garay, Shay Kutten and [[
<math>O(\sqrt V \log^* V + D)</math> where ''D'' is the network, or graph diameter. A lower bound on the time complexity of the solution has been eventually shown to be<ref>[[
<math>\Omega\left({\frac{\sqrt V}{\log V}}\right).</math>
Line 16:
== MST in message-passing model ==
The [[
Two commonly used algorithms for the classical minimum spanning tree problem are [[Prim'
* Both [[Prim'
* Both [[Prim'
Due to these difficulties, new techniques were needed for distributed MST algorithms in the message-passing model. Some bear similarities to [[Borůvka's algorithm]] for the classical MST problem.
Line 26:
== GHS algorithm ==
The GHS algorithm of [[Robert G. Gallager|Gallager]], Humblet and Spira is one of the best-known algorithms in distributed computing theory. This algorithm can construct the MST in asynchronous [[
=== Preconditions<ref name="GHS" /> ===
Line 57:
For a non-zero level fragment, an execution of the algorithm can be separated into three stages in each level:
==== Broadcast ====
The two nodes adjacent to the core broadcast messages to the rest of the nodes in the fragment. The messages are sent via the branch edge but not via the core. Each broadcast message contains the ID and level of the fragment. At the end of this stage, each node has received the new fragment ID and level.
==== Convergecast ====
In this stage, all nodes in the fragment cooperate to find the minimum weight outgoing edge of the fragment. Outgoing edges are edges connecting to other fragments. The messages sent in this stage are in the opposite direction of the broadcast stage. Initialized by all the leaves (the nodes that have only one branch edge), a message is sent through the branch edge. The message contains the minimum weight of the incident outgoing edge it found (or infinity if no such edge was found). The way to find the minimum outgoing edge will be discussed later. For each non-leaf node, (let the number of its branch edges be n) after receiving n-1 convergecast messages, it will pick the minimum weight from the messages and compare it to the weights of its incident outgoing edges. The smallest weight will be sent toward the branch it received the broadcast from.
==== Change core ====
After the completion of the previous stage, the two nodes connected by the core can inform each other of the best edges they received. Then they can identify the minimum outgoing edge from the entire fragment. A message will be sent from the core to the minimum outgoing edge via a path of branch edges. Finally, a message will be sent out via the chosen outgoing edge to request to combine the two fragments that the edge connects. Depending on the levels of those two fragments, one of two combined operations are performed to form a new fragment (details discussed below).
Line 76 ⟶ 79:
Let F and F’ be the two fragments that need to be combined. There are two ways to do this:<ref name="GHS" /><ref name="Lynch" />
* '''Merge''': This operation occurs if both F and F’ share a common minimum weight outgoing edge, and Level(F) = Level(F’). The level of the combined fragment will be Level(F) + 1.
* '''Absorb''': This operation occurs if Level(F) < Level(F’). The combined fragment will have the same level as F’.
Furthermore, when an "Absorb" operation occurs, F must be in the stage of changing the core while F’ can be in arbitrary stage. Therefore, "Absorb" operations may be done differently depending on the state of F’. Let e be the edge that F and F’ want to combine with and let n and n’ be the two nodes connected by e in F and F’, respectively. There are two cases to consider:<br/>
Line 95 ⟶ 98:
== Approximation algorithms ==
An <math>O(\log n)</math>-approximation algorithm was developed by Maleq Khan and Gopal Pandurangan.<ref name="khan">
== References ==
|