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.

link|improve this question
feedback

2 Answers

So you mean there is a possibility there is no spanning tree? In which case prims is fine, you just need to add a check that there is a possible path in the selected columns. In the case that there is no spanning tree it will be complicated to try and do anything with it though, you'd have to delete all the vertices you've added to the tree and treat the remainder as a new graph.

Edit: If you carry out prims by hand on a matrix (google 'D1 prims matrix') then it's easy to visualise what I mean by no arcs in the selected columns.

link|improve this answer
OK what my professor said was that if there is no one spanning tree, then we have to do the sum of all the spanning trees for each connected component. Does that mean I'll have to iterate through every single connected component... – Chris Song May 5 '11 at 17:33
@Chris Song, No, you will find the stage in prims where you know there is no network, and then you can start from another node not in the collection and simply add it on. It would have exactly the same effect as you drawing a dummy arc from a node in the collection to one outside. As I've said, get some paper and try it out. – Mat May 5 '11 at 18:56
feedback

No such thing as a minimum spanning tree unless the graph is connected.

So you might be wanting to do one of two things: either construct the minimum spanning forest of all your connected components; or else to construct a MST for the entire graph by adding edges to connect your components. Which of those it is depends on your problem domain.

Or maybe you're just supposed to detect that the graph isn't connected and indicate it's not possible? That's easy to do.

link|improve this answer
Both cases are possible to build into prim's algorithm, rather as separate checks at the beginning. Of course the first case depends a lot on the aim as to whether it's viable. – Mat May 4 '11 at 15:22
According to my professor, he says that for cases which doesn't have a minimum spanning tree, we're supposed to do the minimum spanning tree for all our connected components. We're just finding the sum of the weights for all the edges so that should technically work. – Chris Song May 4 '11 at 16:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.