(Convert infix to postfix) Write a function that converts an infix expression into a postfix expression using the following header.
string infixToPostfix(const string& expression)For example, the function should convert the infix expression (1 + 2) * 3 to 1 2 + 3 * and 2 * (1 + 3) to 2 1 3 + *.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.