+ 1
Infix to postfix conversion
Q. 8+(7-9)*2 change it in postfix using Python programs
6 ответов
+ 3
what do you mean؟
+ 2
Can you explane more
+ 1
infix and postfix (and prefix) notations are not "part of C/C++": they are matematical expression notation standards:
infix notation:
https://en.m.wikipedia.org/wiki/Infix_notation
postfix notation (RPN: Reverse Polish Notation):
https://en.m.wikipedia.org/wiki/Reverse_Polish_notation
prefix notation (PN: Polish Notation):
https://en.m.wikipedia.org/wiki/Polish_notation
0
8+(7-9)*2 is in infix order you have to change it in postfix order that is 879-2*+
0
You have to do push and pop operation using the program and convert it in postfix order.
0
I can't understand 🤔
what is infix & postfix