Advertisements
Advertisements
प्रश्न
Convert the following infix notations to postfix notations, showing stack and string contents at following step.
A + B - C * D
थोडक्यात उत्तर
उत्तर
Infix Expression is : A + B - C * D
Scanning from Left to Right
Symbol | Action | Stack, Initially Stack is Empty [ ] | Postfix Expressions |
A | Append to Postfix Expression | [ ] | A |
+ | PUSH(‘+’) | + | A |
B | Append to Postfix Expression | + | A B |
– | – have equal precedence to +. First POP(‘+’) then PUSH(‘-‘) | – | A B + |
C | Append to Postfix Expression | – | A B + C |
* | * have higher precedence than -, PUSH ‘*’ | – * | A B + C |
D | Append to Postfix Expression | – * | A B + C D |
End of Expression | POP all and add to Postfix Expression | [ ] | A B + C D * – |
shaalaa.com
Conversion from Infix to Postfix Notation
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Convert (6+4)*7-(8*9) into postfix.
An algorithm is implemented to find if a sequence of parentheses in ((()(())(())) is balanced. What would be the max number of parentheses that can appear on the stack at any one time?
In infix to postfix conversion algorithm, the operators are associated from:
Convert (x+y)/(z*8) into postfix expression.
Postfix expression xyz+qr/*- when converted to infix will look like:
Convert the following infix notations to postfix notations, showing stack and string contents at following step.
A * ((C + D)/E)