I have an adjacency matrix built for one of my projects, and I need to be able to construct a minimum spanning tree out of that matrix. From reading around, it looks like Prim's algorithm is best for this case, however we cannot assume that the graph is one big connected component, since I know for a fact that at least one of the graphs we have to work on has about several thousand connected components. Is Prim's algorithm still viable here, and if it is, is there anything extra I need to do?
I'm coding in Java here, and I can construct the adjacency matrix fine, it's just that I'm stuck on this part.