Tagged Questions

4
votes
6answers
2k views

Finding all disconnected subgraphs in a graph

I have a graph which contains an unknown number of disconnected subgraphs. What's a good algorithm (or Java library) to find them all?
3
votes
1answer
117 views

Time complexity of n-vertex subgraph enumeration

I have an algorithm for creating a list of all possible subgraphs on P vertices through a given vertex. It's not perfect but I think it should be working alright. The problem is I get lost when I try ...