I'm writing a Perl script and would like to use a n-ary tree data structure.
Is there a good implementation that is available as source code (rather than part of a Perl library) ?
|
1
|
|
|
|
|
|
Adding to what Matthew already said, it looks like the following modules would be suitable: |
||
|
|
|
|
I don't really understand why you want it was "source" rather than as a perl library, but you can download the source for any CPAN module. I haven't used it, but Tree looks to fill your requirements. |
||
|
|
|
|
Depending on what you need a tree structure for, you might not need any pre-built implementation. Perl already supports them using arrays of arrayrefs. For example, a simple representation of this tree
could be represented by the following Perl code:
Here, the tree's representation is as nested pairs: first the element (in this case, the letter), then an anonymous array reference representing the children of that element. Note that
Here's a simple depth-first accumulator of all the elements in the tree:
(For breadth first, change the line So, depending on what operations you want to perform on your tree, the simplest thing might be just to use Perl's built-in support for arrays and array references. |
|||
|
|