You are viewing a single comment's thread. Return to all comments →
My Java solution with o(n) time complexity and o(h) space complexity:
public static void postOrder(Node root) { if(root == null) return; postOrder(root.left); postOrder(root.right); System.out.print(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 →
My Java solution with o(n) time complexity and o(h) space complexity: