11.5 Minimum Spanning Trees Flashcards

1
Q

minimum spanning tree

A

A minimum spanning tree in a connected weighted graph is a spanning tree that has the smallest
possible sum of weights of its edges.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

minimum spanning tree

A

A minimum spanning tree in a connected weighted graph is a spanning tree that has the smallest
possible sum of weights of its edges.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Prim’s Algorithm

A

An algorithm for finding a minimum spanning tree.
• Begin by choosing any edge with smallest weight, putting it into the spanning tree.
• Successively add to the tree edges of minimum weight that are incident to a vertex already
in the tree, never forming a simple circuit with those edges already in the tree.
• Stop when n − 1 edges have been added.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Kruskal’s Algorithm

A

An algorithm for finding a minimum spanning tree.
• Begin by choosing an edge in the graph with minimum weight.
• Successively add edges with minimum weight that do not form a simple circuit with those
edges already chosen.
• Stop after n − 1 edges have been selected.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly