Prim's Algorithm

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

Prim's algorithm is a greedy algorithm that computes the minimum cost spanning tree (MST) of a an undirected graph. Even if the algorithm was named after Prim, it was discovered earlier by Jarník. The algorithm is similar to Dijkstra's shortest-path algorithm in that it iterates over the all nodes of the graph, one node at a time ("growing the explored territory like a mold from a starting point"), always maintaining connectivity, evaluating all edges that cross the cut formed by the explored territory and the unexplored territory, attempting to find the cheapest edge. The cost of the edge is the greedy score. Once the edge is found, the distant vertex is added to the "explored territory". There is a non-optimized implementation, where all possible edges are evaluated at each step, and whose running time is O(m n), and an optimized implementation that uses heaps, whose running time is O(m log n). An alternative algorithm to compute the minimum spanning tree is Kruskal's algorithm.

Non-Optimized Implementation

The Prim algorithm randomly selects a node. It then enters a loop where at each iteration adds a new edge and spans one new vertex, adjacent to the ones already spanning. The new vertex added to the "explored territory" is selected so it can be reached via the cheapest edge. This is what makes Prim's algorithm a greedy algorithm.

The running time of the non-optimized implementation is O(m n).

 Initialize X={s} # X is the set of vertices that we spanned so far, s ∈ V chosen arbitrarily
 Initialize T=∅ # T is the minimum spanning tree built so far. Invariant: X = vertices spanned by the three-so-far T 
 while X ≠ V: # The main loop, each iteration grows X with one node
     let e=(u,v) be the cheapest edge of G with u ∈ X, v ∉ X
     add e to T
     add v to X

Playground Implementation

https://github.com/ovidiuf/playground/blob/master/learning/stanford-algorithms-specialization/10-prim-algorithm/src/main/java/playground/stanford/prim/PrimAlgorithm.java

Correctness Proof

The Prim's algorithm always computes a MST.

https://www.coursera.org/learn/algorithms-greedy/lecture/15UXn/correctness-proof-i
https://www.coursera.org/learn/algorithms-greedy/lecture/hYzal/correctness-proof-ii

Optimized Implementation

The optimized implementation uses heaps, in a similar manner to Dijkstra's shortest-path algorithm.

https://www.coursera.org/learn/algorithms-greedy/lecture/bYMq1/fast-implementation-i
https://www.coursera.org/learn/algorithms-greedy/lecture/qzdR8/fast-implementation-ii