Kruskal's Algorithm

Example of a graph Kruskal's Algorithm might be used on:

Steps for Kruskal's Algorithm:

  1. Sort the edges by weight
  2. For each edge (in ascending order)

You can find more information about Kruskal's Algorithm here.