-
Notifications
You must be signed in to change notification settings - Fork 0
/
CALC.C
481 lines (476 loc) · 10.9 KB
/
CALC.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
#include <stdio.h>
#include LIBDIR"std.h"
#include "calc.h"
B8 *_parser_id={"Calculator by Stephen Kittelson: Parser Build: 33: Last modification 2000-06-02"};
void calculator(char *parse,double *answer,struct CALC_RETURN *return_val)
{
/**************************************************************************
* *
* ARGS: *
* char *parse - equation to parse *
* double *answer - pointer to varible where the answer is inserted*
* RETURN *return_val - pointer to RETURN struct where return vals go *
* *
**************************************************************************/
char eq_ops[100]={0};
double eq_num[100]={0};
char temp_ops[100]={0};
double temp_num[100]={0};
char ops[100]={0};
double num[100]={0};
char str[100]={0};
double orig_num;
int cc;
int c3;
int place;
int c;
int pending;
char done;
//error checker
for(c=0,done=FALSE,pending=0;parse[c]!=0&&c<200;c++)
{
switch(parse[c])
{
case '0'://if its a number, dont worry about it
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case '.':
break;
case '-'://after + or -, there should ONLY be numbers,open parenthesis,
case '+'://if there is a newline or null, unexpected end returned
{
if
(
parse[c+1]<'0'&&parse[c+1]>'9'&&parse[c+1]!='.'&&parse[c+1]!='('&&
parse[c+1]!='\n'&&parse[c+1]!=0
)
{
return_val->invalid_char=parse[c+1];
return_val->op=parse[c];
return_val->error=AFTER;
return;
}
else if(parse[c+1]=='\n'||parse[c+1]==0)
{
return_val->op=parse[c];
return_val->error=UNEXPECTED_END;
return;
}
}
break;
case '*'://after multiply and divide, ONLY numbers, open parenthesis,
case '/'://and negative signs
{
if
(
parse[c+1]<'0'&&parse[c+1]>'9'&&parse[c+1]!='.'&&parse[c+1]!='('&&
parse[c+1]!='-'&&parse[c+1]!='\n'&&parse[c+1]!=0
)
{
return_val->invalid_char=parse[c+1];
return_val->op=parse[c];
return_val->error=AFTER;
return;
}
else if(parse[c+1]=='\n'||parse[c+1]==0)
{
return_val->op=parse[c];
return_val->error=UNEXPECTED_END;
return;
}
}
break;
case '^'://after exponent, only numbers and open parenthesis
{
if
(
parse[c+1]<'0'&&parse[c+1]>'9'&&parse[c+1]!='('&&
parse[c+1]!='\n'&&parse[c+1]!=0
)
{
return_val->invalid_char=parse[c+1];
return_val->op=parse[c];
return_val->error=AFTER;
return;
}
else if(parse[c+1]=='\n'||parse[c+1]==0)
{
return_val->op=parse[c];
return_val->error=UNEXPECTED_END;
return;
}
}
break;
case '('://after '(', ONLY numbers, negative signs, and more '('
{
pending++;//increment pending to make sure we have enough closing
if //parenthesis as there are opening
(
parse[c+1]<'0'&&parse[c+1]>'9'&&parse[c+1]!='.'&&
parse[c+1]!='-'&&parse[c+1]!='\n'&&parse[c+1]!='('&&
parse[c+1]!=0
)
{
return_val->invalid_char=parse[c+1];
return_val->op=parse[c];
return_val->error=AFTER;
return;
}
else if(parse[c+1]==')')//for some odd reason, the if above didn't
{ //catch this, so i added this else if
return_val->invalid_char=parse[c+1];
return_val->op=parse[c];
return_val->error=AFTER;
return;
}
else if//there has to be an operator before any '(' except if it
( //is the first char of the string
parse[c-1]!='+'&&parse[c-1]!='-'&&parse[c-1]!='*'&&
parse[c-1]!='/'&&parse[c-1]!='^'&&parse[c-1]!='('&&c>0
)
{
return_val->invalid_char=parse[c-1];
return_val->op=parse[c];
return_val->error=BEFORE;
return;
}
else if(parse[c+1]=='\n'||parse[c+1]==0)//unexpected end, '(' cannot
{ //end equations
return_val->op=parse[c];
return_val->error=UNEXPECTED_END;
return;
}
}
break;
case ')'://after, only operators, more ')', and the end
{
pending--;//we have covered one '('
if
(
parse[c+1]!='+'&&parse[c+1]!='-'&&parse[c+1]!='*'&&
parse[c+1]!='/'&&parse[c+1]!='^'&&parse[c+1]!='\n'&&
parse[c+1]!=')'&&parse[c+1]!=0
)
{
return_val->invalid_char=parse[c+1];
return_val->op=parse[c];
return_val->error=AFTER;
return;
}
}
break;
case '\n'://nuke this sucker
{
parse[c]=0;
}
break;
case '\r':
{
parse[c]=0;
}
break;
default://didn't fit anything else, must be invalid
{
return_val->invalid_char=parse[c];
return_val->error=INVALID_CHAR;
return;
}
}
}
if(c==200&&parse[c]!=0)//with 100 ops and 100 nums, the str should be
{ //200 max chars, if someone passes that limit,
//increase all the sizes of the arrays and upgrade
//all the floats to a higher capacity data type
return_val->error=STR_OVERFLOW;//too much equation for me to swallow :P
return;
}
if(pending>0)//did we have more '(' than ')'?
{
return_val->error=MISSING_AFTER;
return;
}
else if(pending<0)//did we have more ')' than '('?
{
return_val->error=MISSING_BEFORE;
return;
}
//pull the operators and numbers out into eq_ops and eq_nums for easier
//parsing and math
for(c3=0,cc=0,c=0;parse[c]!=0;c++)
{
if((parse[c]>='0'&&parse[c]<='9')||parse[c]=='.'||parse[c]=='-')
{
if(parse[c]=='-')
{
if(cc!=0)
goto chop1;//chop1 is on line 255
eq_ops[c3]='*';
eq_num[c3]=-1;
c3++;
}
else
{
str[cc]=parse[c];//keep storing the number in str until there is no
cc++; //more number
}
}
else
{
chop1://goto on line 242
str[cc]=0;
sscanf(str,"%lf",&eq_num[c3]);//pull the complete number out of str
str[0]=cc=0;
if(parse[c]=='-')
{
eq_ops[c3]='+';//if there is a negative replace with '+ -1 * num'
c3++;
eq_num[c3]=-1;
eq_ops[c3]='*';
str[0]=cc=0;
c3++;
continue;
}
eq_ops[c3]=parse[c];//store the operators
c3++;
}
}
//pull the last number out
str[cc]=0;
sscanf(str,"%lf",&eq_num[c3]);
eq_ops[c3]=0;
str[0]=0;
while(1)
{
//goto last '('
place=0;
for(c=0;eq_ops[c]!=0;c++)
{
if(eq_ops[c]=='(')
{
place=c+1;
}
}
cc=place;
//get the nums into num[] and ops into ops[]
for(c=0;eq_ops[cc]!=')'&&eq_ops[cc]!=0;cc++,c++)
{
num[c]=eq_num[cc];
ops[c]=eq_ops[cc];
}
num[c]=eq_num[cc];
//order of operations
while(1)
{
done=FALSE;
for(c=0;ops[c]!=0;c++)
{
if(ops[c]=='^')
{
//----------------------------------------------------------------------
//edit this code to include radicals
//----------------------------------------------------------------------
if(num[c+1]<1&&num[c+1]!=0)
{
*answer=num[c+1];
return_val->error=INVALID_EXP;
return;
}
orig_num=num[c];
for(cc=1;cc<num[c+1];cc++)
{
num[c]*=orig_num;
}
if(num[c+1]==0)//if it was to the zero power
num[c]=1;
//----------------------------------------------------------------------
//end of place to include radicals
//----------------------------------------------------------------------
//move all the values in num and ops back one to replace the
//operation we just did
for(cc=c+2;ops[cc-1]!=0;cc++)
{
num[cc-1]=num[cc];
ops[cc-2]=ops[cc-1];
}
num[cc-1]=0;
ops[cc-2]=0;
done=TRUE;
break;
}
}
if(!done)//did we do ALL the ^'s in the whole equation we have?
break;
}
while(1)
{
done=FALSE;
for(c=0;ops[c]!=0;c++)
{
if(ops[c]=='*')
{
num[c]*=num[c+1];
for(cc=c+2;ops[cc-1]!=0;cc++)
{
num[cc-1]=num[cc];
ops[cc-2]=ops[cc-1];
}
num[cc-1]=0;
ops[cc-2]=0;
done=TRUE;
break;
}
else if(ops[c]=='/')
{
if(num[c+1]==0)
{
return_val->error=DIV_ZERO;
return;
}
num[c]/=num[c+1];
for(cc=c+2;ops[cc-1]!=0;cc++)
{
num[cc-1]=num[cc];
ops[cc-2]=ops[cc-1];
}
num[cc-1]=0;
ops[cc-2]=0;
done=TRUE;
break;
}
}
if(!done)
break;
}
while(1)
{
done=FALSE;
for(c=0;ops[c]!=0;c++)
{
if(ops[c]=='+')
{
num[c]+=num[c+1];
for(cc=c+2;ops[cc-1]!=0;cc++)
{
num[cc-1]=num[cc];
ops[cc-2]=ops[cc-1];
}
num[cc-1]=0;
ops[cc-2]=0;
done=TRUE;
break;
}
else if(ops[c]=='-')
{
num[c]-=num[c+1];
for(cc=c+2;ops[cc-1]!=0;cc++)
{
num[cc-1]=num[cc];
ops[cc-2]=ops[cc-1];
}
num[cc-1]=0;
ops[cc-2]=0;
done=TRUE;
break;
}
}
if(!done)
break;
}
temp_ops[0]=0;
//goto last '('
for(c=0;eq_ops[c]!=0;c++)
{
if(eq_ops[c]=='(')
{
place=c;
}
}
//goto the next ')' after the last '('
for(;eq_ops[place]!=')'&&eq_ops[place]!=0;place++);
//if there was one, store all the ops and nums after ')'
//so we can put them back in after we put the recently computed
//answer in it's spot
if(eq_ops[place]==')')
{
place++;
c=0;
if(eq_num[place]==-1)//if after ')', it is -1*blah, need to add
{ //space for answer in temp and a '+'
if(eq_ops[place]=='*')
{
c++;
temp_ops[0]='+';
temp_num[0]=0;
}
}
for(cc=place;eq_ops[cc]!=0;c++,cc++)
{
temp_num[c]=eq_num[cc];
temp_ops[c]=eq_ops[cc];
}
temp_num[c]=eq_num[cc];
temp_ops[c]=0;
}
//find the last '(' again
for(place=0,c=0;eq_ops[c]!=0;c++)
{
if(eq_ops[c]=='(')
{
place=c;
}
}
//put all the nums and ops after the last '('s ')' into the main
//eq_num and eq_ops
for(c=0,cc=place;temp_ops[c]!=0;c++,cc++)
{
eq_num[cc]=temp_num[c];
eq_ops[cc]=temp_ops[c];
}
if(cc!=0)
{
eq_num[cc]=temp_num[c];
eq_ops[cc]=temp_ops[c];
}
else
{
eq_num[cc]=0;
eq_ops[cc]=0;
}
//put the recently computed answer into it's spot
eq_num[place]=num[0];
done=TRUE;
for(c=0;eq_ops[c]!=0;c++)//check to see if there are anymore operations
{ //to perform...
if
(
eq_ops[c]=='+'||
eq_ops[c]=='/'||
eq_ops[c]=='*'||
eq_ops[c]=='^'||
eq_ops[c]=='('||
eq_ops[c]==')'
)
{
done=FALSE;//we do, keep going
break;
}
else if(eq_ops[c]=='-'&&c>0)
{
done=FALSE;//its not a negative sign on the answer, keep going
break;
}
}
if(done)//are we done?
break;
}
*answer=num[0];//place final answer into pointer given to us
return_val->error=NO_ERROR;//no errors if we got here
return;
}