|
|
| XP is just a number | |
| PerlMonks |
Re: flattening Complex Datastructuresby bronto (Priest) |
| on Feb 11, 2003 at 08:54 UTC ( #234339=note: print w/ replies, xml ) | Need Help?? |
|
Your approach is really good if, all in all, what you need is to always reach the leaves of the tree --your structure is tree-like in fact But, say you have a three-level hash. If you need to get an hash that lies in the middle, say /a/b your code soon gets complicated, while with real HoH you could simply write something like %b = %{$a->{b}} But if you are ready to pay the tradeoff of slowness and complicateness, you probabily want to write a "driver" object, maybe one that you could tie your hashes to: you keep working with HoH on the front-end, and get with a flat hash on the back-end. But I'm not a tie expert so I can't tell if it is possible at all :-) Cheers! The very nature of Perl to be like natural language--inconsistant and full of dwim and special cases--makes it impossible to know it all without simply memorizing the documentation (which is not complete or totally correct anyway).
In Section
Meditations
|
|
||||||||||||||||||||||||