Python-based Tree Data Structure: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - ". ----" to ". ----") |
m (Text replacement - "__NOTOC__ " to "__NOTOC__ ") |
||
Line 11: | Line 11: | ||
__NOTOC__ | __NOTOC__ | ||
[[Category:Concept]] | [[Category:Concept]] |
Latest revision as of 04:59, 6 January 2023
A Python-based Tree Data Structure is a tree data structure that is a Python data structure.
- Example(s):
def tree(): return defaultdict(tree)
[1].- http://interactivepython.org/runestone/static/pythonds/Trees/bst.html
- Counter-Example(s):
- See: Scala Graph Data Structure, Python Variable.