Follow me

Saturday, 20 February 2021

PostFix Evaluation in cpp | PostFix in c++ | data structure and algorithm using cpp

PostFix Evaluation

#include <iostream>
#include <stack>
#include <math.h>
using namespace std;

int postfixEvaluation(string s)
{
    stack st;
    int stLen = s.length();

    for (int i = 0; i < stLen; i++)
    {
        if (s[i] >= '0' && s[i] <= '9')
        {
            st.push(s[i] - '0');
        }
        else
        {
            int op2 = st.top();
            st.pop();

            int op1 = st.top();
            st.pop();

            switch (s[i])
            {
            case '+':
                st.push(op1 + op2);
                break;

            case '-':
                st.push(op1 - op2);
                break;

            case '*':
                st.push(op1 * op2);
                break;

            case '/':
                st.push(op1 / op2);
                break;

            case '^':
                st.push(pow(op1, op2));
                break;
            }
        }
    }
    return st.top();
}

int main()
{
    string s = "46+2/5*7+";
    cout << postfixEvaluation(s) << endl;

    return 0;
}
Output:
32
            

No comments: