Tagged Questions

5
votes
2answers
174 views

Pattern matching in graphs

I'm trying to find tool/algorithm for searching sections that corresponds to specified pattern in oriented graph, e.g.: A->B->C or or A<->B->C Please, suggest me direction of my searches. I mean ...
5
votes
3answers
327 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
381 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
983 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
0answers
77 views

Finding the best subgraph

I am trying to solve the following problem: Given a connected graph G = (V, E) and a vertex t ∈ V, I need to find a subgraph G'= (V', E ') where t ∈ V'. G' should maximize some objective function ...
3
votes
1answer
111 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
172 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
596 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
235 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!
0
votes
1answer
122 views

subgraph isomorphism [closed]

I need a generic algorithm to solve the problem of subgraph isomorphism, we have tow graphs T and G, is T a subgraph in T?
0
votes
2answers
181 views

algorithm to check whether a given graph is subgraph of another graph [closed]

i assume that we have 2 labeled graphs G and T and the algorithm determine if G a subgraph of T and the corresponding vertices in the main graphT and the subgraph G should have same label