Need help with tree edit distance and restricted top-down mapping algorithm

*This topic was posted a while ago in "java programming" section but was suggested to try here

Hi everyone,

A couple of days ago I posted a topic on analyzing structure similarity between two web pages. After some researching, I know I need to work out some tree matching algorithms: tree edit distance algorithm(TED) and a improved version: restricted top-down mapping algorithm(RTDM). TED is about calculating the minimum operation cost(insert, delete, replace) to map one tree into another. RTDM further restricts the 3 operations to only the leaf nodes so as to improve time complexity.

This is the general idea but I'm having difficulties to find resources to let me understand and implement the algorithms. I'm using ACM portal (Association for Computing Machinery) to access the technical papers but I find that they do not provide enough info, google gives mostly the same technical papers and some websites which illustrate the general idea of these algorithms.

Hoping that you can give me some guidance on these 2 algorithms. Not looking for codes but I need more details on them. Thanks in advance.

[1142 byte] By [style.x7a] at [2007-11-27 9:01:33]
# 1
An algorithm is given here: http://www.cs.utah.edu/~juliana/pub/CIKM630-vieira.pdf
prometheuzza at 2007-7-12 21:31:16 > top of Java-index,Other Topics,Algorithms...
# 2

For scientific research I prefer Scirus: http://www.scirus.com/

Just two pages I found on a quick search:

http://arxiv.org/abs/cs/0604037

http://www.cs.uic.edu/~yzhai/

The latter might not be exactly what you asked for, but you might be interested in the listed publications. I have not taken a closer look.

horstmeyera at 2007-7-12 21:31:16 > top of Java-index,Other Topics,Algorithms...