What is a minimum connector or minimum spanning tree?
Starting with a given network, a minimum connector, or a minimum spanning tree, is the least weight connected graph which includes every vertex.
What are the 2 types of algorithm used to find a minimum spanning tree, and applied to what?
Kruskal’s algorithm applied to the network and Prim’s algorithm applied to the network or to the network table.
How can you use Kruskal’s algorithm to find a minimum connector in a network?
How can you use Prim’s algorithm to find a minimum connector in a network?
How do you use Prim’s algorithm in a tabular format?
Say you build a tree starting from F (will specify in question)
-Delete row C …
Repeat until all vertices have been connected
What is the complexity of Kruskals and Prims algorithm?
Quadratic complexity for both - O(n^2)