Tree: Postorder Traversal

  • + 0 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 + " ");
        }