Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding function for actual level order traversal #699

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 39 additions & 9 deletions traversals/binary_tree_traversals.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
This is pure python implementation of tree traversal algorithms
"""
from __future__ import print_function

import queue

try:
raw_input # Python 2
raw_input # Python 2
except NameError:
raw_input = input # Python 3

Expand All @@ -22,7 +23,7 @@ def build_tree():
print("Enter the value of the root node: ", end="")
check = raw_input().strip().lower()
if check == 'n':
return None
return None
data = int(check)
q = queue.Queue()
tree_node = TreeNode(data)
Expand All @@ -46,13 +47,15 @@ def build_tree():
node_found.right = right_node
q.put(right_node)


def pre_order(node):
if not isinstance(node, TreeNode) or not node:
return
print(node.data, end=" ")
pre_order(node.left)
pre_order(node.right)


def in_order(node):
if not isinstance(node, TreeNode) or not node:
return
Expand Down Expand Up @@ -82,22 +85,43 @@ def level_order(node):
if node_dequeued.right:
q.put(node_dequeued.right)

#iteration version

def level_order_actual(node):
if not isinstance(node, TreeNode) or not node:
return
q = queue.Queue()
q.put(node)
while not q.empty():
list = []
while not q.empty():
node_dequeued = q.get()
print(node_dequeued.data, end=" ")
if node_dequeued.left:
list.append(node_dequeued.left)
if node_dequeued.right:
list.append(node_dequeued.right)
print()
for node in list:
q.put(node)


# iteration version
def pre_order_iter(node):
if not isinstance(node, TreeNode) or not node:
return
stack = []
n = node
while n or stack:
while n: #start from root node, find its left child
while n: # start from root node, find its left child
print(n.data, end=" ")
stack.append(n)
n = n.left
#end of while means current node doesn't have left child
# end of while means current node doesn't have left child
n = stack.pop()
#start to traverse its right child
# start to traverse its right child
n = n.right


def in_order_iter(node):
if not isinstance(node, TreeNode) or not node:
return
Expand All @@ -111,22 +135,24 @@ def in_order_iter(node):
print(n.data, end=" ")
n = n.right


def post_order_iter(node):
if not isinstance(node, TreeNode) or not node:
return
stack1, stack2 = [], []
n = node
stack1.append(n)
while stack1: #to find the reversed order of post order, store it in stack2
while stack1: # to find the reversed order of post order, store it in stack2
n = stack1.pop()
if n.left:
stack1.append(n.left)
if n.right:
stack1.append(n.right)
stack2.append(n)
while stack2: #pop up from stack2 will be the post order
while stack2: # pop up from stack2 will be the post order
print(stack2.pop().data, end=" ")


if __name__ == '__main__':
print("\n********* Binary Tree Traversals ************\n")

Expand All @@ -147,6 +173,10 @@ def post_order_iter(node):
level_order(node)
print("\n******************************************\n")

print("\n********* Actual Level Order Traversal ************")
level_order_actual(node)
print("\n******************************************\n")

print("\n********* Pre Order Traversal - Iteration Version ************")
pre_order_iter(node)
print("\n******************************************\n")
Expand All @@ -157,4 +187,4 @@ def post_order_iter(node):

print("\n********* Post Order Traversal - Iteration Version ************")
post_order_iter(node)
print("\n******************************************\n")
print("\n******************************************\n")