DATA STRUCTURE
Programming and Technical
Programming
Technical
Convert the following infix expression to post fix
notation ((a+2)*(b+4)) -1 (Similar types can be asked)
Read Solution (Total 2)
-
- a2+b4+*1-
make expression tree then post order traversal - 10 years agoHelpfull: Yes(11) No(0)
- a2+b4+*1-
- 10 years agoHelpfull: Yes(2) No(1)
DATA STRUCTURE Other Question