I am trying to find the all the minimum spanning trees in the graph using kruskal's algorithm.
I know that if all the weight of the edges that is distinct from each other, there will only be one minimum spanning tree in the graph. So, for more than two minimum spanning tree in the graph, there must be at least two edges that has the same weight. Therefore, I am thinking I should start cutting the edges with the same amount of weight.
However, I am wondering will it make a difference if I cut different amount of edges at a time?
Thank you!!