You are viewing a single comment's thread. Return to all comments →
JavaScript solution:
function postOrder(root) { if (root) { postOrder(root.left); postOrder(root.right); process.stdout.write(root.data + " "); } }
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 →
JavaScript solution: