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
|
/*
** EVAL.C - A simple mathematical expression evaluator in C
**
** operators supported: (
** )
** +
** -
** *
** /
** ^
**
** limitations: 1 - No precedence rules are implemented.
** 2 - Numbers can be negated (e.g. "-13"), but not
** expressions (e.g. "-(13)").
**
** Original Copyright 1991 by Bob Stout as part of
** the MicroFirm Function Library (MFL)
**
** This subset* version is hereby donated to the public domain.
**
** *(The MFL version adds 150 lines of code, 5 level precedence,
** logarithmic and transcendental operators, pi as a constant,
** named variables, and fully understands negation.)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#define NUL '\0'
typedef enum {R_ERROR = -2 /* range */, ERROR /* syntax */, SUCCESS} STATUS;
static char delims[] = "+-*/^)("; /* Tokens */
static char op_stack[256]; /* Operator stack */
static double arg_stack[256]; /* Argument stack */
static char token[256]; /* Token buffer */
static int op_sptr, /* op_stack pointer */
arg_sptr, /* arg_stack pointer */
parens, /* Nesting level */
state = 0; /* 0 = Awaiting expression
1 = Awaiting operator
*/
int evaluate(char *, double *);
static int do_op(void);
static int do_paren(void);
static void push_op(char);
static void push_arg(double);
static STATUS pop_arg(double *);
static STATUS pop_op(int *);
static char *getexp(char *);
static char *getop(char *);
static void pack(char *);
#ifdef TEST
void main(int argc, char *argv[])
{
double val;
printf("evaluate(%s) ", argv[1]);
printf("returned %d\n", evaluate(argv[1], &val));
printf("val = %f\n", val);
}
#endif
/*
** Evaluate a mathematical expression
*/
int evaluate(char *line, double *val)
{
double arg;
char *ptr = line, *str, *endptr;
int ercode;
pack(line);
while (*ptr)
{
switch (state)
{
case 0:
if (NULL != (str = getexp(ptr)))
{
if ('(' == *str)
{
push_op(*str);
ptr += strlen(str);
break;
}
if (0.0 == (arg = strtod(str, &endptr)) &&
NULL == strchr(str, '0'))
{
return ERROR;
}
push_arg(arg);
ptr += strlen(str);
}
else return ERROR;
state = 1;
break;
case 1:
if (NULL == (str = getop(ptr)))
return ERROR;
if (strchr(delims, *str))
{
if (')' == *str)
{
if (SUCCESS > (ercode = do_paren()))
return ercode;
}
else
{
push_op(*str);
state = 0;
}
ptr += strlen(str);
}
else return ERROR;
break;
}
}
while (1 < arg_sptr)
{
if (SUCCESS > (ercode = do_op()))
return ercode;
}
if (!op_sptr)
return pop_arg(val);
else return ERROR;
}
/*
** Evaluate stacked arguments and operands
*/
static int do_op(void)
{
double arg1, arg2;
int op;
if (ERROR == pop_op(&op))
return ERROR;
pop_arg(&arg1);
pop_arg(&arg2);
switch (op)
{
case '+':
push_arg(arg2 + arg1);
break;
case '-':
push_arg(arg2 - arg1);
break;
case '*':
push_arg(arg2 * arg1);
break;
case '/':
if (0.0 == arg1)
return R_ERROR;
push_arg(arg2 / arg1);
break;
case '^':
if (0.0 > arg2)
return R_ERROR;
push_arg(pow(arg2, arg1));
break;
case '(':
arg_sptr += 2;
break;
default:
return ERROR;
}
if (1 > arg_sptr)
return ERROR;
else return op;
}
/*
** Evaluate one level
*/
static int do_paren(void)
{
int op;
if (1 > parens--)
return ERROR;
do
{
if (SUCCESS > (op = do_op()))
break;
} while ('('!= op);
return op;
}
/*
** Stack operations
*/
static void push_op(char op)
{
if ('(' == op)
++parens;
op_stack[op_sptr++] = op;
}
static void push_arg(double arg)
{
arg_stack[arg_sptr++] = arg;
}
static STATUS pop_arg(double *arg)
{
*arg = arg_stack[--arg_sptr];
if (0 > arg_sptr)
return ERROR;
else return SUCCESS;
}
static STATUS pop_op(int *op)
{
if (!op_sptr)
return ERROR;
*op = op_stack[--op_sptr];
return SUCCESS;
}
/*
** Get an expression
*/
static char *getexp(char *str)
{
char *ptr = str, *tptr = token;
while (*ptr)
{
if (strchr(delims, *ptr))
{
if ('-' == *ptr)
{
if (str != ptr && 'E' != ptr[-1])
break;
}
else if (str == ptr)
return getop(str);
else if ('E' == *ptr)
{
if (!isdigit(ptr[1]) && '-' != ptr[1])
return NULL;
}
else break;
}
*tptr++ = *ptr++;
}
*tptr = NUL;
return token;
}
/*
** Get an operator
*/
static char *getop(char *str)
{
*token = *str;
token[1] = NUL;
return token;
}
/*
** Remove whitespace & capitalize
*/
static void pack(char *str)
{
char *ptr = str, *p;
strupr(str);
for ( ; *ptr; ++ptr)
{
p = ptr;
while (*p && isspace(*p))
++p;
if (ptr != p)
strcpy(ptr, p);
}
}
|