Skip to content

Instantly share code, notes, and snippets.

@lettergram
Created March 14, 2015 04:03
Embed
What would you like to do?
'''
In Order Traversal of the tree
'''
def InOrder(self, root):
if root is None:
pass
else:
self.InOrder(root.left)
print(root.data),
self.InOrder(root.right)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment