26-Scope and Definition of Network Models, Minimum Spanning Tree Algorithm-04-02-2023
26-Scope and Definition of Network Models, Minimum Spanning Tree Algorithm-04-02-2023
Note: Theoretically, a Minimal Spanning Tree can be formulated and solved as a linear
program (LP). However, LP is not a practical option because numerous constraints
must be added to exclude all cycles, resulting in a huge LP, even for small networks.
Figure 3: Description of Loop
and Minimum Spanning Tree
We have now obtained the Minimum Spanning Tree consisting of arcs (1, 2), (2, 5), (5, 3),
and (5, 4). The length of the minimum spanning tree is 1+2+2+4 = 9 units.
Note:
If a tree has n vertices, then it will have n-1 arcs and no looping.
There can be more than one minimum spanning tree (MST) in a
given network diagram.
The algorithm stops when all the nodes are in the spanning tree.
We build tree from the start. So, the tree property is maintained
throughout.