You are viewing a single comment's thread. Return to all comments →
def inOrder(root): result = [] def traverse(node): if not node: return traverse(node.left) result.append(str(node.info)) traverse(node.right) traverse(root) print(" ".join(result))
Seems like cookies are disabled on this browser, please enable them to open this website
Tree: Inorder Traversal
You are viewing a single comment's thread. Return to all comments →