Advertisement
akosiraff

Stack Infix to postfix CPP

Oct 16th, 2013
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/stack-infix-to-postfix-cpp/
  3. Write a program in which the driver simply calls a function
  4. named inToPostfix which reads an infix expression from
  5. standard input and writes the equivalent postfix expression
  6. to standard output. The infix expression includes operands,
  7. parentheses, and operators, where the operands are single
  8. lowercase characters, and the operators are +, -, *, /, and
  9. ^ (exponentiation).
  10. Use the STL container stack to store a stack of characters.
  11. Include error checks in the code.
  12. Your program should be implemented in a single file.
  13.  
  14. Download: http://solutionzip.com/downloads/stack-infix-to-postfix-cpp/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement