Reputation: 122
I have derived some subsets of a graph.Now I want to store this subsets and label them such as subset_1,subset_2 etc.Which data structure would be efficient to do that? This is the main graph
The circled marks are the subsets
Upvotes: 1
Views: 174
Reputation: 211
The subgraph is actually a graph. You can use Graph to store these subsets/subgraph.
Upvotes: 0