jmerelo has asked for the wisdom of the Perl Monks concerning the following question:
But it's not exactly what I'm looking for, since changing a node from one subtree to another would give distance=7 (or 4 in the case above). Can anybody help me? Pointers to RF distance definition anywhere? Thanks!use Tree::DAG_Node; use String::Approx qw(adist); my $lol1=[['a','b'],['c','d'],['e']]; my $lol2=[['a','b','c'],['d'],['e']]; my $tree1 = Tree::DAG_Node->lol_to_tree( $lol1 ); my $tree2 = Tree::DAG_Node->lol_to_tree( $lol2 ); my $str1 = $tree1->tree_to_lol_notation(); my $str2 = $tree2->tree_to_lol_notation(); my $dist = adist( $str1, $str2 ); print "Distance between $str1 and $str2 is $dist\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Distance among trees
by cacharbe (Curate) on Nov 19, 2001 at 18:44 UTC | |
by jmerelo (Sexton) on Nov 19, 2001 at 20:59 UTC | |
by cacharbe (Curate) on Nov 19, 2001 at 21:41 UTC | |
by jmerelo (Sexton) on Nov 19, 2001 at 23:47 UTC | |
by cacharbe (Curate) on Nov 20, 2001 at 00:35 UTC | |
by jmerelo (Sexton) on Nov 20, 2001 at 20:59 UTC |