N-ary tree module for python

Started by
1 comment, last by Sneftel 14 years, 1 month ago
I need an N-ary tree data structure for a project on which I'm currently working (written in Python). I've found numerous binary tree packages floating around out there, but wasn't able to find any packages for n-ary trees. I wouldn't be that difficult to roll my own, but I figured I'd check if anyone had suggestions before I reinvented the wheel. Thanks, Rob
Advertisement
You're working in Python? Then you don't need any kind of package for an N-ary tree data structure. Just make lists that contain other lists.
Or dictionaries that contain other dictionaries.

This topic is closed to new replies.

Advertisement