Infix and Postfix
1. Why is there a need to convert from infix to postfix and then evaluate, instead of directly evaluating infix?
2. Postfix evaluation of 1 2 + 3 9 - + 4 + is _______.
3. Convert the expression from infix to postfix 1 + 1 - 3 * 4 / 2 + 3 - 8?
4. Convert the expression from Infix to Postfix a + b * (c ^ d - e) ^ (f + g * h) - i?
5. Convert the expression from Infix to Postfix a + b * c - d ^ e ^ f?