Python-based Tree Data Structure: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "---- ---- [[Category" to "---- ---- __NOTOC__ [[Category") |
m (Text replacement - ". ----" to ". ----") |
||
Line 6: | Line 6: | ||
** a [[Scala Tree Data Structure]]. | ** a [[Scala Tree Data Structure]]. | ||
* <B>See:</B> [[Scala Graph Data Structure]], [[Python Variable]]. | * <B>See:</B> [[Scala Graph Data Structure]], [[Python Variable]]. | ||
---- | ---- | ||
---- | ---- |
Revision as of 00:03, 23 September 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.