Infix, postfix expression - Data Structure
Q. Data Structure: What is the infix version of the following postfix expression?
x 12 + z 17 y + 42 * / +
- Published on 19 Oct 15a. x + 12 + z / 17 + y * 42
b. x + 12 + z / ((17 + y) * 42)
c. (x + 12 + z) / (17 + y * 42)
d. None of the above.
ANSWER: x + 12 + z / ((17 + y) * 42)