Implement exercise binary-search-tree (#773)

This commit is contained in:
Rodrigo Oliveira
2017-11-13 19:09:54 -02:00
committed by Nathan Parsons
parent 16ba6f52d1
commit f236ea1ff6
5 changed files with 218 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
class TreeNode(object):
def __init__(self, value):
self.value = value
class BinarySearchTree(object):
def __init__(self):
pass
def add(self, value):
pass
def search(self, value):
pass