4. [15 points] Find a minimum weight spanning tree using Kruskal's algorithm. Start at vertex 'a', Maintain edge informa
Posted: Sun Jul 10, 2022 11:27 am
4. [15 points] Find a minimum weight spanning tree using Kruskal's algorithm. Start at vertex 'a', Maintain edge information in the form [u, v, w] where the edge is between vertex u and v with weight w. Fill the below table. Draw the minimum spanning tree as final output, calculate the weight of minimum spanning tree. 7 a 13 Front edge b 15 e 9 Discard edge (if forms a cycle) 19 25 22 10 Priority Queue of edges (front to back) [u, v, w] A - set of edges in the minimum spanning tree. [u, v, w]