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 paper by him, but couldn't understand much.

What other algorithms exist for this problem?

I am working on an image processing project.

link|improve this question

Post a link to a PDF would ya? I suspect that this is homework. – Hamish Grubijan Apr 18 '10 at 16:41
@Hamish: What kind of school/college gives solving a NP Complete problem as homework? I might join it :) – Bruce Apr 18 '10 at 16:48
Professors in graduate classes like to weed out and recruit geniuses by giving one or two crazy problems on homework sets. – Hamish Grubijan Apr 18 '10 at 17:22
@Hamish: Thats news to me. I am still an undergraduate and definitely not a genius :) – Bruce Apr 18 '10 at 17:36
1  
NP-complete doesn't mean a problem cannot be solved; it just means that no exact algorithm is known that scales polynomially as the input size grows large. It is still often possible to find approximate algorithms, and it is usually possible to solve the problem exactly for quite a range of small input sizes. (For example, the traveling salesperson problem can be solved for up to tens of thousands of nodes.) – ShreevatsaR Apr 18 '10 at 19:44
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

VFLib2 is a C++ library for graph isomorphism finding. It also includes an Ullman implementation: http://amalfi.dis.unina.it/graph/db/vflib-2.0/doc/vflib.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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