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?

link|improve this question
feedback

closed as not a real question by Bill the Lizard Mar 12 '11 at 12:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

If you had spent five minutes reading e.g. the Wikipedia article on subgraph isomorphism, you would have discovered that there is an algorithm due to Ullmann for solving the problem. Also, since the problem is NP-complete, a straight-forward brute force algorithm (try every possible way of matching each node in T with a node in G) would probably also be acceptable.

link|improve this answer
feedback

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