vote up 0 vote down star
1

I'm looking for a tool that finds duplicate nodes in a tree data structure (using Freemind to map the data structure, but I'll settle for anything I can export a generic data tree out too...)

The idea is that I can break the tree down into modules which I can repeat thus simplifying the structure of the tree.

flag

80% accept rate

2 Answers

vote up 1 vote down check

I would just have a table of subtrees.

Walk the tree depth-first. At each node, after visiting sub-nodes, if there is an equivalent node in the table, replace the current node with the one in the table. If there is not an equivalent node in the table, then add the current node to the table.

Does that do it? I believe it's called common-subexpression-elimination.

link|flag
Sounds good man, and thanks for the technical name for it, that'll make it easier to research. :) – leeand00 May 28 at 15:19
As a web developer it seems that I'm always doing this... – leeand00 May 28 at 15:20
@leeand00: Good luck. If you need some sample (pseudo)code I can gen up some. – Mike Dunlavey May 28 at 16:22
vote up 0 vote down

Wouldn't it actually be better to prevent duplicate nodes in a tree? Why do you need duplicate nodes in a tree?

link|flag
Yes, it would be much better. But it's not a luxury I have on my job. I didn't write the stuff, someone else did. I'm trying to "clean up after them" as it were. – leeand00 May 28 at 14:50

Your Answer

Get an OpenID
or

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