mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-25 09:50:59 -04:00
another possibility for binary trees with traversals for generators
This commit is contained in:
parent
c3cb3f1c1b
commit
cc8f1099d6
2 changed files with 127 additions and 1 deletions
|
@ -6,7 +6,6 @@ __author__ = "bt3"
|
|||
class Node(object):
|
||||
|
||||
def __init__(self, item=None,):
|
||||
|
||||
self.item = item
|
||||
self.left = None
|
||||
self.right = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue