aboutsummaryrefslogtreecommitdiff
path: root/source/binarytree.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/binarytree.py')
-rw-r--r--source/binarytree.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/binarytree.py b/source/binarytree.py
index 52e32db7..c9747d57 100644
--- a/source/binarytree.py
+++ b/source/binarytree.py
@@ -21,11 +21,11 @@ class OrderedBinaryTree(object):
"""
Represents a binary ordered .
"""
- def __init__(self):
+ def __init__(self, root):
"""
Initializes the root member.
"""
- self.root = None
+ self.root = root
def addNode(self, data):
"""
@@ -147,7 +147,8 @@ class OrderedBinaryTree(object):
"""
Pretty display.
"""
- return ", ".join([article["article_title"] for article in self.in_order_traversal(self.root)])
+ return ", ".join([article["article_title"] for article in \
+ self.in_order_traversal(self.root)])
if __name__ == "__main__":
# Point of entry in execution mode.
bgstack15