Question 5.3 from the course text.
void inorder ( BinNode * rt )
{
if (rt == NULL) return;
inorder (rt->leftchild ());
visit (rt);
inorder (rt->rightchild ());
}
(b)
void postorder ( BinNode * rt )
{
if (rt == NULL) return;
postorder (rt->leftchild ());
postorder (rt->rightchild ());
visit (rt);
}