fix few details, binary search trees

This commit is contained in:
Mari Wahl 2014-08-27 21:14:22 -04:00
parent 5a7a97b25f
commit f77b8eaaf2
15 changed files with 73 additions and 629 deletions
src/trees/binary_trees_and_others

View file

@ -1,23 +0,0 @@
#!/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()