forked from 790hanu/Annex-qr-code-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.cpp
122 lines (107 loc) · 2.21 KB
/
3.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// custom class based stack implimentation
#include<iostream>
using namespace std;
class Stack {
int top;
int MAX;
int* a;
public:
Stack(int size){
top = -1;
MAX = size;
a = new int [MAX];
}
bool push(int x);
int pop();
int peek();
bool isEmpty();
bool isFull();
};
bool Stack::isEmpty(){
return (top < 0);
}
bool Stack::isFull(){
return (top == MAX - 1);
}
int Stack::peek(){
return a[top];
}
bool Stack::push(int x) {
if (top >= (MAX - 1)) {
cout << "Stack Overflow";
return false;
}
else {
top++;
a[top] = x;
return true;
}
}
int Stack::pop()
{
if (top < 0) {
cout << "Stack Underflow";
return INT_MIN;
}
else {
int x = a[top];
top--; return x;
}
}
int priority (char alpha)
{
if(alpha == '+' || alpha =='-')
return 1;
if(alpha == '*' || alpha =='/')
return 2;
if(alpha == '^')
return 3;
return 0;
}
string convert(string infix)
{
int i = 0;
string postfix = "";
Stack s(20);
while(infix[i]!='\0')
{
// if operand add to the postfix expression
if(infix[i]>='a' && infix[i]<='z'|| infix[i]>='A'&& infix[i]<='Z')
{
postfix += infix[i];
i++;
}
// if opening bracket then push the stack
else if(infix[i]=='(') {
s.push(infix[i]);
i++;
}
// if closing bracket encounted then keep popping from stack until
// closing a pair opening bracket is not encountered
else if(infix[i]==')') {
while(s.peek()!='(')
postfix += s.pop();
s.pop();
i++;
}
else {
while (!s.isEmpty() && priority(infix[i]) <= priority(s.peek())){
postfix += s.pop();
}
s.push(infix[i]);
i++;
}
}
while(!s.isEmpty()){
postfix += s.pop();
}
cout << "Postfix is : " << postfix;
//it will print postfix conversion
return postfix;
}
int main() {
string infix = "((a+(b*c))-d)";
string postfix;
postfix = convert(infix);
return 0;
}