mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-24 09:21:24 -04:00
fix few details, stacks
This commit is contained in:
parent
dffd4fb2b7
commit
5a7a97b25f
22 changed files with 369 additions and 128 deletions
23
src/trees/binary_trees_and_others/bunchclass.py
Normal file
23
src/trees/binary_trees_and_others/bunchclass.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
__author__ = "Mari Wahl"
|
||||
__email__ = "marina.w4hl@gmail.com"
|
||||
|
||||
class BunchClass(dict):
|
||||
def __init__(self, *args, **kwds):
|
||||
super(BunchClass, self).__init__(*args, **kwds)
|
||||
self.__dict__ = self
|
||||
|
||||
|
||||
def main():
|
||||
''' {'right': {'right': 'Xander', 'left': 'Willow'}, 'left': {'right': 'Angel', 'left': 'Buffy'}}'''
|
||||
bc = BunchClass # notice the absence of ()
|
||||
tree = bc(left = bc(left="Buffy", right="Angel"), right = bc(left="Willow", right="Xander"))
|
||||
print(tree)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue