Problem Statement :
You are given a string expression. You are asked to print the postfix expression of the given string.
Output Format:
The output consists of one line which prints the given infix expression converted into a postfix expression.
Output:
abcd^e-fgh*+^*+i-
Approach:
- Scan the infix expression from left to right.
- If the scanned character is an operand, output it.
- Else,
a) If the precedence of the scanned operator is greater than the precedence of the operator in the stack(or the stack is empty or the stack contains a ‘(‘ ), push it.
b) Else, Pop all the operators from the stack which are greater than or equal to in precedence than that of the scanned operator. After doing that Push the scanned operator to the stack. (If you encounter parenthesis while popping then stop there and push the scanned operator in the stack). - If the scanned character is an ‘(‘, push it to the stack.
- If the scanned character is an ‘)’, pop the stack and output it until a ‘(‘ is encountered, and discard both the parenthesis.
- Repeat steps 2–6 until infix expression is scanned.
- Print the output
- Pop and output from the stack until it is not empty.
Code:
Time Complexity: O(N)
Space Complexity: O(N*N)