Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
1k views

What does it mean for two binary trees to be isomorphic?

What does it mean for two binary trees to be isomorphic? I've been looking online and I can't seem to find a clear explanation. As far as I understand, two trees are isomorphic if they have the same ...
5
votes
2answers
173 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 ...
4
votes
1answer
143 views

Counting Subgraph Instances

Let's say I have a large (several thousand node) directed graph G and a much smaller (3-5 node) directed graph g. I want to count how many isomorphisms of g are in G. In other words, I want to know ...
4
votes
2answers
729 views

What's the Difference Between Subgraph Isomorphism and Subgraph Monomorphism?

In one of the projects I've worked on, the subject of isomorphism versus monomorphism came up. A little background: I'm no expert on graph theory and have no formal training in it. But this topic is ...
3
votes
2answers
2k views

Find all subtrees in a tree matching a given subtree in Java

I am writing code in Java that uses an unordered, rooted tree where each node may have any number of child nodes. Given a tree T and a subtree S, I want to be able to find all the subtrees in T that ...
1
vote
1answer
70 views

VF2 algorithm steps with example

Can someone explain the steps of the VF2 algorithm for graph isomorphism in simple words? I am learning this algorithm, but it is harsh without a working example. Can someone lead me the right ...
1
vote
0answers
101 views

SmartClient: PUT data duplication

I am using SmartClient 8.1 and using XML data sources for GET and PUT operations. Following is a sample of data I GET. <data> <user> <group1> <value1>abc</value1> ...
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
180 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
0
votes
1answer
281 views

Where can I find C++/C code for tree isomorphism problem?

Where can I find code for tree isomorphism problem in O(N), where N is the number of nodes?
0
votes
3answers
383 views

Python UUID represented as special characters

When creating a UUID in Python, likeso: >>> uuid.uuid1() UUID('a8098c1a-f86e-11da-bd1a-00112444be1e') How could one map that UUID into a string made up of the capitalized alphabet A-Z ...