Prim’s Algorithm is a greedy algorithm that constructs a minimum spanning tree for a weighted undirected graph. It grows the MST by repeatedly choosing the minimum weight edge that connects a new vertex to the set of vertices already included.
For more details, check out Wikipedia: Prim’s Algorithm .