Prim's Algorithm: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:
=Overview=
=Overview=
Even if the algorithm was named after Prim, it was discovered earlier by Jarník.
Even if the algorithm was named after Prim, it was discovered earlier by Jarník.
=Non-Optimized Implementation=
The Prim algorithm randomly selects a node and then, in a loop where at each iteration a new node is added to the "explored territory", it selects the node that can be reached via the cheapest edge.

Revision as of 22:04, 20 October 2021

External

Internal

Overview

Even if the algorithm was named after Prim, it was discovered earlier by Jarník.

Non-Optimized Implementation

The Prim algorithm randomly selects a node and then, in a loop where at each iteration a new node is added to the "explored territory", it selects the node that can be reached via the cheapest edge.