your image

Stack | Set 2 (Infix to Postfix) - GeeksforGeeks

GeeksforGeeks
greeksforgeeks
Related Topic
:- Computer Operating

Stack | Set 2 (Infix to Postfix)

  • Difficulty Level : Medium
  • Last Updated : 06 Sep, 2021

 

Prerequisite – Stack | Set 1 (Introduction) 
Infix expression: The expression of the form a op b. When an operator is in-between every pair of operands.
Postfix expression: The expression of the form a b op. When an operator is followed for every pair of operands.
Why postfix representation of the expression? 
The compiler scans the expression either from left to right or from right to left. 
Consider the below expression: a op1 b op2 c op3 d 
If op1 = +, op2 = *, op3 = +
The compiler first scans the expression to evaluate the expression b * c, then again scans the expression to add a to it. The result is then added to d after another scan.
The repeated scanning makes it very in-efficient. It is better to convert the expression to postfix(or prefix) form before evaluation.
The corresponding expression in postfix form is abc*+d+. The postfix expressions can be evaluated easily using a stack. We will cover postfix expression evaluation in a separate post.
Algorithm 
1. Scan the infix expression from left to right. 
2. If the scanned character is an operand, output it. 
3. Else, 
      1 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. 
      2 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.

Recommended: Please solve it on “PRACTICE ” first, before moving on to the solution. 
 

Following is the implementation of the above algorithm  

  • C++
  • C
  • Java
  • Python
  • C#
  • Javascript

 

 

 

/* C++ implementation to convert

infix expression to postfix*/

 

#include<bits/stdc++.h>

using namespace std;

 

//Function to return precedence of operators

int prec(char c) {

    if(c == '^')

        return 3;

    else if(c == '/' || c=='*')

        return 2;

    else if(c == '+' || c == '-')

        return 1;

    else

        return -1;

}

 

// The main function to convert infix expression

//to postfix expression

void infixToPostfix(string s) {

 

    stack<char> st; //For stack operations, we are using C++ built in stack

    string result;

 

    for(int i = 0; i < s.length(); i++) {

        char c = s[i];

 

        // If the scanned character is

        // an operand, add it to output string.

        if((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9'))

            result += c;

 

        // If the scanned character is an

        // ‘(‘, push it to the stack.

        else if(c == '(')

            st.push('(');

 

        // If the scanned character is an ‘)’,

        // pop and to output string from the stack

        // until an ‘(‘ is encountered.

        else if(c == ')') {

            while(st.top() != '(')

            {

                result += st.top();

                st.pop();

            }

            st.pop();

        }

 

        //If an operator is scanned

        else {

            while(!st.empty() && prec(s[i]) <= prec(st.top())) {

                result += st.top();

                st.pop(); 

            }

            st.push(c);

        }

    }

 

    // Pop all the remaining elements from the stack

    while(!st.empty()) {

        result += st.top();

        st.pop();

    }

 

    cout << result << endl;

}

 

//Driver program to test above functions

int main() {

    string exp = "a+b*(c^d-e)^(f+g*h)-i";

    infixToPostfix(exp);

    return 0;

}

Output

abcd^e-fgh*+^*+i-

 

Comments