-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInfixToPostfixUsingStacksAndQueues.cpp
65 lines (62 loc) · 1.14 KB
/
InfixToPostfixUsingStacksAndQueues.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include<bits/stdc++.h>
using namespace std;
#define SIZE 50
char s[SIZE];
int top=-1;
void push(char elem)
{
s[++top]=elem;
}
char pop()
{
return(s[top--]);
}
int pr(char elem)
{
switch(elem)
{
case '#': return 0;
case '(': return 1;
case '+':
case '-': return 2;
case '*':
case '/': return 3;
}
}
int main()
{
char infx[50],pofx[50],ch,elem;
int front=0,rear=0;
int i=0,k=0;
cout << "Enter The Infix Expression"<< endl;
cin >> infx;
push('#');
while( (ch=infx[i++]) != '\0')
{
if( ch == '(') push(ch);
else
if(isalnum(ch)){
pofx[rear++]=ch;
}
else
if( ch == ')')
{
while( s[top] != '(')
pofx[rear++]=pop();
elem=pop();
}
else
{
while( pr(s[top]) >= pr(ch) )
pofx[rear++]=pop();
push(ch);
}
}
while( s[top] != '#')
pofx[rear++]=pop();
pofx[rear]='\0';
cout << "Postfix Expression:";
for (i = front; i < rear; i++) {
cout << pofx[i];
}
}