Kruskal runs on a connected graph with 6 vertices. How many edges does the finished tree hold?
Answer: ______________
A connected graph has 6 vertices and 8 edges. A spanning tree is made by deleting edges until no loops remain while keeping the graph connected. How many edges does the spanning tree keep?
Kruskal's method is run on a connected graph with 6 vertices. When the method stops, how many edges does the built tree have?
Answer: ______________
On vertices A, B, C, D with weights AB 1, CD 2, AC 3, BC 4, BD 5, why is BC rejected?
A connected graph holds 7 vertices and 9 edges. A spanning tree is cut down to no loops. How many edges were deleted?
Answer: ______________
A cut splits the vertices into two groups and E is the lightest edge crossing it. Why is E safe?
In a union-find forest, calling find(E) walks up the chain E to D to B to A, where A is the root. What does path compression change during this call?
Find on E walks up E to D to B to root A. What does path compression change?
Kruskal examines an edge whose ends already share a root in the union find forest. What must it do, and why?
A student unions two trees but skips path compression ever after, claiming finds stay just as fast. What is wrong?