How to obtain all the subgraphs of a fixed size from a graph, in pseudocode? (brute force)

Without external libraries if possible. Thanks!

link|improve this question
1  
Homework? If so, use the homework tag. – Mark Byers Jan 1 '10 at 19:42
1  
That would be the cartesian product of the set of all subsets of vertices and the set of all subsets of edges, right? – pau.estalella Jan 1 '10 at 19:45
Crisco: you've just asked a questions about a clique algorithm. I seriously suggest you try to do your homework yourself, we wont be there during your end of term finals – Alon Jan 1 '10 at 19:46
If it was homework, believe me I wouldn't be here... Thanks Pau! – Cristo Jan 1 '10 at 19:49
2  
I don't think Pau's answer is totally correct, as it suggests that the number of edges and number of vertices are independent of each other. Removing a vertex means that certain edges will no longer exist, so a simple Cartesian product of subsets won't do. – avpx Jan 1 '10 at 19:56
show 2 more comments
feedback

2 Answers

More or less that would be something along these lines:

GenerateSubgraphs(Graph G):
    powerV = powerset(G.V)
    powerE = powerset(G.E)
    subgraphs = {}
    foreach V in powerV:
        foreach E in powerE:
            accept = true
            foreach edge in E:
                if edge.u not in V or edge.v not in V:
                    accept = false
            if accept:
                subgraphs.insert((V, E))
    return subgraphs

EDIT: Fixed indentation of 'edges.insert' line

EDIT: Removed duplicated graphs

link|improve this answer
This is ok, but really you don't need to build edges. If, for a given combination (V, E), E mentions any vertices not in V, you can just skip it. – Jason Orendorff Jan 1 '10 at 22:57
Whoa, that's right. The fixed edges will be generated in another iteration. Fixing it... – pau.estalella Jan 1 '10 at 23:16
feedback

Since a graph is only edges and vertices, find all possible subsets of the vertices and construct all possible subsets of the edges on them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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