Tree: Postorder Traversal

  • + 9 comments

    void Postorder(Node root) {

    if(root == null)
        {
        return;
    }
    if(root!=null)
        {
         Postorder(root.left);
         Postorder(root.right);
         System.out.print(root.data+" ");
    
    }
    

    }