The following weighted graph has 6 vertices, labeled 1–6.
The weights of the edges are:
Apply Kruskal's algorithm to find the minimum spanning tree (MST) for the graph. State the edges in the order they are considered, indicating whether each is included or rejected, and find the total weight of the MST.
[5]The question tests the application of Kruskal's algorithm to find the Minimum Spanning Tree (MST) of a given weighted graph. Students must demonstrate sorting edges by weight and correctly selecting edges while avoiding cycles.
A weighted graph has vertices and the following edges with their respective weights:
Use Kruskal's algorithm to determine the edges in the minimum spanning tree (MST) and calculate its total weight.
[4]