Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Algorithms for subgraph isomorphism detection [closed]

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.

like image 832
Bruce Avatar asked Apr 18 '10 13:04

Bruce


1 Answers

VFLib2 is a C++ library for graph isomorphism finding. It also includes an Ullman implementation: http://mivia.unisa.it/datasets/graph-database/vflib/

like image 154
timvdm Avatar answered Sep 29 '22 06:09

timvdm