Minimum Spanning Trees
What is a spanning tree of a graph?
How many edges does a Minimum Spanning Tree have if the graph has 6 vertices?
What is the main goal of finding a Minimum Spanning Tree?
In Kruskal's algorithm, what happens when you encounter an edge that would create a cycle?
Consider a graph with edges: AB(3), AC(1), BC(4), AD(2), BD(5), CD(6). Using Prim's algorithm starting from vertex A, which edge is selected second?
What is the key difference between Kruskal's and Prim's algorithms?
Given a graph where all edge weights are distinct, how many different Minimum Spanning Trees can exist?
Consider a complete graph with 5 vertices where each edge weight is randomly assigned. If you run both Kruskal's and Prim's algorithms, which statement is guaranteed to be true?