How to obtain all the subgraphs of a fixed size from a graph, in pseudocode? (brute force)
Without external libraries if possible. Thanks!
|
How to obtain all the subgraphs of a fixed size from a graph, in pseudocode? (brute force) Without external libraries if possible. Thanks! | |||||||||||||||||
feedback
|
|
More or less that would be something along these lines:
EDIT: Fixed indentation of 'edges.insert' line EDIT: Removed duplicated graphs | |||||
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. | |||
|
feedback
|