-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercise4-10.c
277 lines (254 loc) · 5.54 KB
/
exercise4-10.c
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#include <stdio.h>
#include <stdlib.h> // for atof()
#include <math.h> // for remainder(x,y)
#include <ctype.h>
#include <string.h>
#define MAXOP 100 // max size of operand or operator
#define NUMBER '0'
#define ADVANCED '1'
#define VARIABLE '2'
int getLine2(char s[], int lim);
int getch(void);
void ungetch(int);
void advancedMath(char []);
int getop(char []);
void push(double);
double pop(void);
void peek(void);
void dup(void);
void swap(void);
void clear(void);
void showInternals(int);
void ungets(char []);
/* reverse polish calculator
4-6 had some help looking at solution manual;
'5 A =' assigns 5 to A
'A 4 *' takes the value of A, pushes to stack making 5 4 * which equals 20
20 is stored in v where it can be used in the future aka:
v A / which pushes the value of v and A to make '20 5 /' and results in 4
4-7 We don't need to know about buf or bufp, only ungetch is needed.
*/
int main(){
int i, type, prevType;
double op2, v = 0;
char s[MAXOP];
double variables[26];
for(i = 0; i < 26; i++){
variables[i] = 0.0;
}
while((type = getop(s)) != EOF) {
// showInternals(type); // for debugging
switch(type){
case NUMBER:
push(atof(s));
break;
case '+':
push(pop() + pop());
break;
case '*':
push(pop() * pop());
break;
case '-':
op2 = pop();
push(pop() - op2);
break;
case '/':
op2 = pop();
if(op2 != 0.0)
push(pop() / op2);
else
printf("error: zero divisor\n");
break;
case '%':
op2 = pop();
if(op2 != 0.0)
push(remainder(pop(), op2));
else
printf("error: zero modulus\n");
break;
case ADVANCED:
advancedMath(s);
break;
case '?':
peek();
break;
case '~':
swap();
break;
case '@':
dup();
break;
case '!':
clear();
break;
case '=':
pop(); // remove pushed variable value
if(prevType >= 'A' && prevType <= 'Z')
variables[prevType - 'A'] = pop();
else
printf("variable assignment error: invalid var (A-Z only)");
break;
case '\n':
v = pop();
printf("\tResult: %.8g\n", v);
break;
default:
if(type >= 'A' && type <= 'Z'){
push(variables[type - 'A']);
}else if(type == 'v'){
push(v);
}else{
printf("error: unknown command %s\n", s);
}
break;
}
prevType = type;
}
return 0;
}
// handle advanced math
void advancedMath(char s[]){
double op2;
if(!strcmp(s, "sin"))
push(sin(pop()));
else if(!strcmp(s, "exp"))
push(exp(pop()));
else if(!strcmp(s, "pow")){
op2 = pop();
push(pow(pop(), op2));
}else
printf("advancedMath error: %s no supported\n", s);
}
#define MAXVAL 100 // maximum depth of val stack
int sp = 0; // next free stack position
double val[MAXVAL]; // value stack
// push push f onto value stack
void push(double f){
if(sp < MAXVAL)
val[sp++] = f;
else
printf("error: stack full, can't push %g\n", f);
}
//pop: pop and return top value from stack
double pop(void){
if(sp > 0)
return val[--sp];
else {
printf("pop error: stack empty.\n");
return 0.0;
}
}
// print top element of stack, but don't pop it
void peek(void){
if(sp > 0)
printf("Top of stack: %g\n",val[sp-1]);
else
printf("peek error: stack empty\n");
}
// duplicate top element of stack
void dup(void){
if(sp > 0)
push(val[sp-1]);
else
printf("dup error: stack empty.\n");
}
// swap top 2 elements of stack
void swap(void){
if(sp > 1){
double hold = val[sp-1];
val[sp-1] = val[sp-2];
val[sp-2] = hold;
}else
printf("swap error: stack has less than 2 entries.\n");
}
// clear stack
void clear(void){
sp = 0;
}
char userInput[1000];
int iter = 0;
// getop: get next operator or numeric operand
// separate inputs with either space or tab
int getop(char s[]){
int i, c;
if(userInput[iter] == '\0'){
if( getLine2(userInput, 1000) == 0){
return EOF;
}else{
iter = 0;
}
}
// printf("getline: %s,iter %d\n", userInput, iter); // for debugging
while((s[0] = c = userInput[iter++]) == ' ' || c == '\t')
; // ignore
s[1] = '\0';
i = 0;
if(isalpha(c)){
while(isalpha(s[++i] = c = userInput[iter++]))
;
s[i] = '\0';
if( c != EOF)
iter--;
return i > 1 ? ADVANCED : s[0] + 0;
}
if (!isdigit(c) && c != '.' && c != '-')
return c; // not a number
if(isdigit(c) || c == '-') // collect integer part
while(isdigit(s[++i] = c = userInput[iter++]))
;
if(c == '.') // collect fractional part
while (isdigit(s[++i] = c = userInput[iter++]))
;
s[i] = '\0';
if(c != '\0')
iter--;
return strcmp(s, "-") == 0 ? '-' : NUMBER;
}
void ungets(char s[]){
int len = strlen(s);
while(len > 0)
ungetch(s[--len]);
}
#define BUFSIZE 100
// 4-9 EOF is a negative number, but there are no negative char so it may not
// record the proper value. Possible solution is to make but an int array
char buf[BUFSIZE]; // buffer for ungetch
int bufp = 0; // next free position in buf
//char pushback;
int getch(void){ // get a (possibly pushed back) character
return (bufp > 0) ? buf[--bufp] : getchar();
// 4-8
// if(bufp){
// bufp = 0;
// return pushback;
//}else
// getchar();
}
void ungetch(int c){ // push character back on input
if(bufp >= BUFSIZE)
printf("ungetch: too many characters\n");
else
buf[bufp++] = c;
// 4-8
// pushback = c;
// bufp = 1;
}
void showInternals(int type)
{
int i;
printf("type: %d\tOperation: %c\tstack:\t",type, type == NUMBER ? ' ' : type);
for(i = 0; i < sp; i++)
printf("%lf, ", val[i]);
printf("\n\n");
}
// getline: get line into s, return length
int getLine2(char out[], int lim){
int c, i;
i = 0;
while (--lim > 0 && ( c = getchar()) != EOF && c != '\n')
out[i++] = c;
if(c == '\n')
out[i++] = c;
out[i] = '\0';
return i;
}