The way I did this years ago was invent a new operator for my postfix expression. So when I encountered a unary minus in the infix, I'd convert it to #
. So my postfix for a + -b
became ab#+
.
And, of course, my evaluator had to know that #
only popped one operand.
Kind of depends on how you're using the postfix expression once it's built. If you want to display it then your special #
operator would probably confuse people. But if you're just using it internally (which I was), then it works great.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…