http://qs321.pair.com?node_id=771312


in reply to Re: various hash construction/ printing questions..
in thread how to construct tree from parent pointer list

Thanks,

That was very informative. What if I have three points of data.. say, child, parent, node name (ie descriptor)? Something like:

__DATA__ b:a:apples d:b:fuji apples <\c> <p> The structure would look something like: <p> <c> $VAR1 = { 'a' => { 'name' => 'fruit', 'child' => { 'b' => { 'name' => 'apples', 'child' => { 'd' => { 'name' +=> 'fuji apples' } } } } } };

Can your current algorithm be modified to work with this?