https://github.com/sehgalvibhor/n-arytree
A N-Children tree developed in Python, nothing fancy !
https://github.com/sehgalvibhor/n-arytree
data-structures python tree
Last synced: about 1 month ago
JSON representation
A N-Children tree developed in Python, nothing fancy !
- Host: GitHub
- URL: https://github.com/sehgalvibhor/n-arytree
- Owner: sehgalvibhor
- Created: 2015-08-18T08:27:20.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-18T08:29:46.000Z (almost 11 years ago)
- Last Synced: 2025-01-06T05:26:31.965Z (over 1 year ago)
- Topics: data-structures, python, tree
- Language: Python
- Size: 125 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# N-AryTree
A N-Children tree developed in Python, nothing fancy !
This tree has N childre, adding the children is very simple by creating a node and using the add_child function. Also a traverse method is defined which uses recursion to find all the values greater than the threshold value entered by the user.