-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpostfix.cpp
167 lines (137 loc) · 3.46 KB
/
postfix.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#include <iostream>
#include <cstring>
using namespace std;
/*
Given a postfix exp as a string, find value of this exp
or evaluate a postfix exp
All tokens are seperated by space
ip: 10 2 * 3 +
op: 23
explanation: (10 2 * 3 +) => ((10 2 *) + 3) => ((10*2)+3)
ip: 10 2 + 3 *
op: 36
explanation: (10 2 + 3 *) => ((10 2 +) * 3) => ((10+2)*3)
ip: 10 2 3 ^ ^ ^
op: 100000000
Hint: postfix exp do not require associativity or precedence
nor do they require brackets
hence they can be evaluated in one pass in a linear fasion
Approach:
Traverse the string from left to right
whenever we see a operator, we take prev two operands
and evaluate value of this operator
now use this result as operand for futher traversal
Algorithm for evaluation of postfix
1) Create an empty stack st
2) Traverse through every symbol x of given postfix
i) if x is an operand i.e a number, push to st
ii) else if x is an operator
a) pop stack two times for getting two operands
b) compute operation with the popped operands
c) push these result into stack
return st.top()
Time: O(n)
Space: O(n)
*/
class Stack
{
public:
int top;
unsigned capacity;
int *array;
};
// Stack Operations
Stack *createStack(unsigned capacity)
{
Stack *stack = new Stack();
if (!stack)
return NULL;
stack->top = -1;
stack->capacity = capacity;
stack->array = new int[(stack->capacity * sizeof(int))];
if (!stack->array)
return NULL;
return stack;
}
int isEmpty(Stack *stack)
{
return stack->top == -1;
}
int peek(Stack *stack)
{
return stack->array[stack->top];
}
int pop(Stack *stack)
{
if (!isEmpty(stack))
return stack->array[stack->top--];
return '$';
}
void push(Stack *stack, int op)
{
stack->array[++stack->top] = op;
}
// The main function that returns value
// of a given postfix expression
int evaluatePostfix(char *exp)
{
// Create a stack of capacity equal to expression size
Stack *stack = createStack(strlen(exp));
int i;
// See if stack was created successfully
if (!stack)
return -1;
// Scan all characters one by one
for (i = 0; exp[i]; ++i)
{
// if the character is blank space then continue
if (exp[i] == ' ')
continue;
// If the scanned character is an
// operand (number here),extract the full number
// Push it to the stack.
else if (isdigit(exp[i]))
{
int num = 0;
// extract full number
while (isdigit(exp[i]))
{
num = num * 10 + (int)(exp[i] - '0');
i++;
}
i--;
// push the element in the stack
push(stack, num);
}
// If the scanned character is an operator, pop two
// elements from stack apply the operator
else
{
int val1 = pop(stack);
int val2 = pop(stack);
switch (exp[i])
{
case '+':
push(stack, val2 + val1);
break;
case '-':
push(stack, val2 - val1);
break;
case '*':
push(stack, val2 * val1);
break;
case '/':
push(stack, val2 / val1);
break;
}
}
}
return pop(stack);
}
// Driver code
int main()
{
char exp[] = "10 2 * 3 +";
cout << evaluatePostfix(exp);
return 0;
}