Answer: PROCEDURE RPOSTORDER(T)
[Given a binary tree whose root node address is given by the pointer variable T, this algorithm traverses the tree in postorder in a recursive manner].
1. [Check for empty tree]
If T = NULL
then write (“Empty Tree”)
return.
2. [Process the left tree]
If LPTR(T) != NULL
then call RPOSTORDER(LPTR(T)).
3. [Process the right node]
If RPTR(T) != NULL
then call RPOSTORDER(RPTR(T)).
4. [Process the root node]
else
write DATA(T).
5. [FINISH]
return.