Prim's Algorithm
A Minimum Spanning Tree Search Algorithm
Store all of a node's outgoing edges.
Pick the one with a minimum weight and remove it from the store.
Add all of the attached node's outgoing edges.
More Info