DATA STRUCTURE
Programming and Technical
Programming
Technical
What is a postfix expression?
Read Solution (Total 3)
-
- Postfix also known as Reverse Polish Notation (or RPN), is a notational system where the operation/function follows the arguments.
Infix notation is:
(((1 + 2) * 3) + 6) / (2 + 3)
Postfix notation will be:
1 2 + 3 * 6 + 2 3 + / - 9 years agoHelpfull: Yes(4) No(0)
- postfix expression means expression in which operators are lies at end of expression.
- 6 years agoHelpfull: Yes(0) No(0)
- Postfix notation is a notation for writing arithmetic expressions in which the operands appear before their operators.
Let the arithmetic expression be a+b ,where a and b are operands and + is an operator .
the postfix expression for the above is : ab+ - 5 years agoHelpfull: Yes(0) No(0)
DATA STRUCTURE Other Question