void postfix_print(node *cur) { // a b + c * 7 + if (cur-> l) postfix_print(cur-> l); if (cur-> r) postfix_print(cur-> r); cur-> print(); }