后缀表示法是否只有答案?

whether postfix notation only has a answer?

infix notaion:x=a+b*(c-d+e/f)/(g*h)+i

我把中缀改成了post修复,我有两个answers.I不知道哪个是对的

1.x a b c d - e f / + g h * / * + i + =
2.x a b c d - e f / + * g h * / + i + =

我将post-fix转换成运动序列,发现两个堆栈都是空的。 所以,我想问问有没有可能有两个答案。

如果您进行评估,您会发现您的问题归结为 (b*(c-d+e/f))/(g*h) 是否与 b*((c-d+e/f)/(g*h))

相同

答案是它们是一样的。即:

(x*y)/z == x*(y/z)