You are viewing a single comment's thread. Return to all comments →
Python 3:
def postOrder(root): if root.left: postOrder(root.left) if root.right: postOrder(root.right) print(root.info, end =" ")
Seems like cookies are disabled on this browser, please enable them to open this website
Tree: Postorder Traversal
You are viewing a single comment's thread. Return to all comments →
Python 3: