Infix to Postfix-Asked in Interviews

Placewit
2 min readDec 21, 2021

--

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:

  1. Scan the infix expression from left to right.
  2. If the scanned character is an operand, output it.
  3. 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).
  4. If the scanned character is an ‘(‘, push it to the stack.
  5. If the scanned character is an ‘)’, pop the stack and output it until a ‘(‘ is encountered, and discard both the parenthesis.
  6. Repeat steps 2–6 until infix expression is scanned.
  7. Print the output
  8. Pop and output from the stack until it is not empty.

Code:

Time Complexity: O(N)
Space Complexity: O(N*N)

Thanks for Reading

Placewit grows the best engineers by providing an interactive classroom experience and by helping them develop their skills and get placed in amazing companies.

Learn more at Placewit. Follow us on Instagram and Facebook for daily learning.

--

--

Placewit
Placewit

Written by Placewit

Upskilling students for tech placements!

No responses yet