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 pattern matching. I need to find all group of nodes and edges, that matching specified pattern

link|improve this question
you have to give a rigorous definition of "pattern" and "matching". – akappa May 1 '11 at 12:18
Can the pattern contain cycles, i.e. "A->B->A->C" ? – Anders Lindahl May 1 '11 at 12:31
If you have the pattern you can code it yourself. Please be aware that the answer to your question depends on the programming language that you are using to program the graphs. Therefore, we cannot help you if you don't provide us this information. – bacchus May 1 '11 at 13:22
bacchus, i use python and now searching for graph lib and now choosing from: networkx, python-graph, graph-tool – Jamal May 1 '11 at 13:28
Anders Lindahl, yes – Jamal May 1 '11 at 13:29
feedback

2 Answers

up vote 2 down vote accepted

Isn't this the Subgraph isomorphism problem? If yes, the Wikipedia page contains a section on algorithms.

link|improve this answer
thx, Marcos, Subgraph Isomorphism Iterator is all i want. – Jamal May 3 '11 at 15:48
@Jamal: you're welcome! – MarcoS May 4 '11 at 6:34
feedback

Regarding possible libraries you can find an answer here Python Graph Library.

As for the pattern matching, if you know the pattern you're searching for, you just need to traverse the graph and compare the paths or you can use a function to retrieve a path between nodes and check if the pattern exists.

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.