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