開発環境
- OS X Lion - Apple(OS)
- Emacs、BBEdit - Bare Bones Software, Inc. (Text Editor)
- プログラミング言語: C
- Clang (コンパイラ)
プログラミング言語C 第2版 ANSI規格準拠 (B.W. カーニハン D.M. リッチー (著)、 石田 晴久 (翻訳)、共立出版)の第4章(関数とプログラム構造)4.3(外部変数)の演習4-10を解いてみる。
その他参考書籍
- プログラミング言語Cアンサー・ブック 第2版 (クロビス・L.トンド、スコット・E.ギンペル(著)、矢吹 道郎(翻訳))
演習 4-10.
コード
sample.c
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define MAXOP 100
#define NUMBER '0'
#define NAME 'n'
int getop(char []);
void push(double);
double pop(void);
void math_f(char []);
int main()
{
int type, i, var_name;
double op1, op2, variable[26], last_value;
char s[MAXOP];
for ( i = 0; i < 26; i++) {
variable[i] = 0.0;
}
while ((type = getop(s)) != EOF) {
switch (type) {
case NUMBER:
push(atof(s));
break;
case NAME:
math_f(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(fmod(pop(), op2));
} else {
printf("error: zero %%\n");
}
break;
/* スタックの一番上の要素を印刷 */
case 't':
op2 = pop();
printf("\t%.8g\n", op2);
push(op2);
break;
/* スタックの一番上の要素を複製 */
case 'd':
op2 = pop();
push(op2);
push(op2);
break;
/* スタックの上の二つの要素を交換 */
case 's':
op2 = pop();
op1 = pop();
push(op2);
push(op1);
break;
case '=':
pop();
if ('A' <= var_name && var_name <= 'Z') {
variable[var_name - 'A'] = pop();
} else {
printf("error: name %c\n", var_name);
}
break;
case '\n':
last_value = pop();
printf("\t%.8g\n", last_value);
break;
default:
if ('A' <= type && type <= 'Z') {
push(variable[type - 'A']);
} else if (type == 'l') {
push(last_value);
} else {
printf("error: unknown command %s\n", s);
}
break;
}
var_name = type;
}
return 0;
}
#define MAXVAL 100
int sp = 0;
double val[MAXVAL];
void push(double f)
{
if (sp < MAXVAL) {
val[sp++] = f;
} else {
printf("error: stack full, can't push %g\n", f);
}
}
double pop(void)
{
if (sp > 0) {
return val[--sp];
} else {
printf("error: stack empty\n");
return 0.0;
}
}
#include <ctype.h>
#define MAXLINE 1000
int line_i;
char line[MAXLINE];
int my_getline(char [], int);
int getop(char s[])
{
int c, i;
if (line[line_i] == '\0') {
if(my_getline(line, MAXLINE) == 0) {
return EOF;
} else {
line_i = 0;
}
}
while ((s[0] = c = line[line_i++]) == ' '|| c == '\t')
;
s[1] = '\0';
i = 0;
if (islower(c)) {
while (islower(s[++i] = c = line[line_i++]))
;
s[i] = '\0';
line_i--;
if (i > 1) {
return NAME;
}
return s[0];
}
if (!isdigit(c) && c != '.' && c != '-') {
return c;
}
if (c == '-') {
if (isdigit(c = line[line_i++]) || c == '.') {
s[++i] = c;
} else {
line_i--;
return '-';
}
}
if (isdigit(c)) {
while (isdigit(s[++i] = c = line[line_i++]))
;
}
if (c == '.') {
while (isdigit(s[++i] = c = line[line_i++]))
;
}
s[i] = '\0';
line_i--;
return NUMBER;
}
#include <string.h>
void math_f(char s[])
{
double op2;
if (strcmp(s, "sin") == 0) {
push(sin(pop()));
} else if (strcmp(s, "exp") == 0) {
push(exp(pop()));
} else if (strcmp(s, "pow") == 0) {
op2 = pop();
push(pow(pop(), op2));
} else {
printf("error: unknown func %s\n", s);
}
}
int my_getline(char s[], int lim)
{
int c, i;
i = 0;
while (--lim > 0 && (c = getchar()) != EOF && c != '\n') {
s[i++] = c;
}
if (c == '\n') {
s[i++] = c;
}
s[i] = '\0';
return i;
}
入出力結果(Terminal)
$ ./a.out 1 2 - 4 5 + * -9 $
0 コメント:
コメントを投稿