Tagged Questions
5
votes
3answers
347 views
minimum connected subgraph containing a given set of nodes
I have an unweighted, connected graph. I want to find a connected subgraph that definitely includes a certain set of nodes, and as few extras as possible. How could this be accomplished?
Just in ...
5
votes
3answers
399 views
Easy way to determine whether a given graph is subgraph of some other graph?
I'm looking for an algorithm to check whether a given graph is subgraph of another given graph.
I have few conditions to make this NP complete problem bit more feasible..
The graphs have approx ...
4
votes
3answers
1k views
Graph Algorithm To Find All Paths Between N Arbitrary Vertices
I have an graph with the following attributes:
Undirected
Not weighted
Each vertex has a minimum of 2 and maximum of 6 edges connected to it.
Vertex count will be < 100
Graph is static and no ...
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 ...
2
votes
1answer
181 views
subgraphs in a graph
I have a main graph and another small graph, suppose that the small graph could be repeated in the main graph as a subgraph with a degree of similarity(not necessarily the same small graph)
What's a ...
2
votes
1answer
631 views
Algorithms for subgraph isomorphism detection
Subgraph isomorphism is an NP Complete problem. The most widely used algorithm is the one proposed by Ullman.
Can someone please explain the algorithm to me in layman's language? I read the above ...
1
vote
2answers
232 views
Induced subgraph; existence of path between two nodes
Sorry for the wall of text, its as concise as I could make it!
I've got one very large directed graph, G, and subset of vertices, S, from within G. What I want to do is find the subgraph of G ...
1
vote
2answers
241 views
How to obtain all the subgraphs from a graph?
How to obtain all the subgraphs of a fixed size from a graph, in pseudocode? (brute force)
Without external libraries if possible. Thanks!