Postfix To Infix
Postfix To Infix
Postfix To Infix
Program :
#include <stdio.h>
#include <conio.h>
#include <ctype.h>
#include <stdlib.h>
void main(){
postfix[j++] = infix[i];
}
else if(infix[i] =='('){
push(infix[i]);
}
else if(infix[i] ==')'){
while(stack[top] !='('){
postfix[j++]=pop();
}
pop();
}
else{
while((!isEmpty() && stack[top] !='(') &&
(priority(stack[top])>=priority(infix[i]))){
postfix[j++] = pop();
}
push(infix[i]);
}
}
while(!isEmpty() && stack[top]!='('){
postfix[j++]=pop();
}
postfix[j]='\0';
}
int isEmpty(){
if(top==-1){
return 1;
}
else{
return 0;
}
}
void push(int x){
if(top==MAX-1){
printf("\nStack is Overflow ");
}
else{
top++;
stack[top] = x;
}
}
int pop(){
int n;
if(isEmpty()){
return -1;
}
else{
n=stack[top];
top--;
return n;
}
}
// void peek(){
// if(top==-1){
// printf("\nStack is Empty ");
// }
// else{
// printf("\nTop Element is : %d",stack[top]);
// }
// }
// void display(){
// int i;
// if(top==-1){
// printf("Stack is Empty");
// }
// }