Python-based Tree Data Structure: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Text replacement - "---- ---- [[Category" to "---- ---- __NOTOC__ [[Category") |
||
Line 8: | Line 8: | ||
---- | ---- | ||
---- | ---- | ||
__NOTOC__ | |||
[[Category:Concept]] | [[Category:Concept]] |
Revision as of 18:54, 18 March 2021
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.