You are viewing a single comment's thread. Return to all comments →
# Recursive version using Function Stack: def preOrder(root): print(root.info, end=' ') if root.left: preOrder(root.left) if root.right: preOrder(root.right)
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 →