You are viewing a single comment's thread. Return to all comments →
Ridiculously easy. Note that python optimizes tail recursive loops so this isn't an inefficient use of recursion.
def preOrder(root): if root is None: return print(root.info, end=' ') preOrder(root.left) 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 →
Ridiculously easy. Note that python optimizes tail recursive loops so this isn't an inefficient use of recursion.