Expand description

Find minimum-spanning-tree in an undirected graph using Kruskal’s algorithm.

Functions§

  • Find a minimum-spanning-tree. From a collection of weighted edges, return a vector of edges forming a minimum-spanning-tree.
  • Minimal-spanning-tree for nodes with integer indices. The nodes must have consecutives indices between 0 and number_of_nodes-1.