import java.util.*; /** * An implementation of tree search based on Kruskal. */ public class Kruskal { /** * * @param The type for the vertices in the graph. * @param The type for edges in the graph. * @param g The graph in which to search * @return The list of edges in the minimum spanning tree. */ public > List minimumSpanningTree(GraphInterface g) { return null; } }