http://www.perlmonks.org?node_id=322849


in reply to Building dynamic nested hash references

Thanks ysth and broquaint, that does it nicely.

Now I know this follow-on question is really asking for another data structure like a linked list, but ...

... assuming I had the same information but wanted to step my way back *up* the 'tree' to find the parent hash of the item we found in this example, and then the parent of that etc, is there any way to do this on the hash I've displayed? The only way I can think of is to store references to each of the steps taken down the tree (when the item was initially found) in an array and query that?

Update: or storing parent hash information in the tree itself as it is built?

I really want a different data structure don't I? :)

Ryan

  • Comment on Re: Building dynamic nested hash references

Replies are listed 'Best First'.
Re: Re: Building dynamic nested hash references
by Roy Johnson (Monsignor) on Jan 21, 2004 at 15:49 UTC
    Like the actual filesystem, you should store a ".." entry in each directory when you create it.

    The PerlMonk tr/// Advocate