Friday, February 13, 2015
C Program and Algorithm for Evaluation of a Postfix Expression
In postfix or reverse polish notation, every operator follows all of its operands. For example 5 3 2 * +.
Algorithm for Evaluation of Postfix Expression
Create an empty stack and start scanning the postfix expression from left to right.
– If the element is an operand, push it into the stack.
– If the element is an operator O, pop twice and get A and B respectively. Calculate BOA and push it back to the stack.
– When the expression is ended, the value in the stack is the final answer.
Also Read: C Program for Array Representation of Stack [Push, Pop and Display]
Also Read: Menu Driven C Program to Perform Insert, Display and Delete Operations on a Singly Linked List (SLL)
Evaluation of a postfix expression using a stack is explained in below example:
C Program for Evaluation of a Postfix Expression
//Assumption -- primary operators -,+,*,/,% operand -- a single digit
#include<stdio.h>
#include<conio.h>
#define MAX 20
typedef struct stack
{
int data[MAX];
int top;
}stack;
void init(stack *);
int empty(stack *);
int full(stack *);
int pop(stack *);
void push(stack *,int);
int evaluate(char x,int op1,int op2);
void main()
{
stack s;
char x;
int op1,op2,val;
init(&s);
printf("Enter the expression(eg: 59+3*)
Single digit operand and operators only:");
Single digit operand and operators only:");
while((x=getchar())!=
)
)
{
if(isdigit(x))
push(&s,x-48); //x-48 for removing the effect of ASCII
else
{
op2=pop(&s);
op1=pop(&s);
val=evaluate(x,op1,op2);
push(&s,val);
}
}
val=pop(&s);
printf("
Value of expression=%d",val);
Value of expression=%d",val);
}
int evaluate(char x,int op1,int op2)
{
if(x==+)
return(op1+op2);
if(x==-)
return(op1-op2);
if(x==*)
return(op1*op2);
if(x==/)
return(op1/op2);
if(x==%)
return(op1%op2);
}
void init(stack *s)
{
s->top=-1;
}
int empty(stack *s)
{
if(s->top==-1)
return(1);
return(0);
}
int full(stack *s)
{
if(s->top==MAX-1)
return(1);
return(0);
}
void push(stack *s,int x)
{
s->top=s->top+1;
s->data[s->top]=x;
}
int pop(stack *s)
{
int x;
x=s->data[s->top];
s->top=s->top-1;
return(x);
}
Image Credit: http://cis.stvincent.edu/html/tutorials/swd/stacks/stacks.html
Labels:
a,
algorithm,
and,
c,
evaluation,
expression,
for,
of,
postfix,
program