I'm writing a Ruby script and would like to use a n-ary tree data structure.
Is there a good implementation that is available as source code? Thanks.
I'm writing a Ruby script and would like to use a n-ary tree data structure.
Is there a good implementation that is available as source code? Thanks.
To expand on Otto's answer, an easy way of getting a Hash to auto-vivify arrays is to use the default value block with
Hash::new
, like so:But really, the code depends on what you want to do with your arrays. You can either set them up with Hashes and Arrays, or make some classes:
This code, for example, gives: