開発環境
- OS X Lion - Apple(OS)
- Emacs、BBEdit - Bare Bones Software, Inc. (Text Editor)
- プログラミング言語: C
- Clang (コンパイラ)
プログラミング言語C 第2版 ANSI規格準拠 (B.W. カーニハン D.M. リッチー (著)、 石田 晴久 (翻訳)、共立出版)の第5章(ポインタと配列)、5.12(複雑な宣言)、演習5-18を解いてみる。
その他参考書籍
- プログラミング言語Cアンサー・ブック 第2版 (クロビス・L.トンド、スコット・E.ギンペル(著)、矢吹 道郎(翻訳))
演習 5-18.
コード
sample.c
#include <stdio.h> #include <string.h> #include <ctype.h> #define MAXTOKEN 100 enum {NAME, PARENS, BRACKETS}; enum {NO, YES}; void dcl(void); void dirdcl(void); int gettoken(void); void error(char *); int tokentype; char token[MAXTOKEN]; char name[MAXTOKEN]; char datatype[MAXTOKEN]; char out[1000]; int pretoken; int main() { while (gettoken() != EOF) { strcpy(datatype, token); out[0] = '\0'; dcl(); if (tokentype != '\n') { printf("syntax error\n"); } printf("%s: %s %s\n", name, out, datatype); } return 0; } void dcl(void) { int ns; for (ns = 0; gettoken() == '*';) { ns++; } dirdcl(); while (ns-- > 0) { strcat(out, " pointer to"); } } void dirdcl(void) { int type; if (tokentype == '(') { dcl(); if (tokentype != ')') { error("error: missing )\n"); } } else if (tokentype == NAME) { strcpy(name, token); } else { error("error: expected name or (dcl)\n"); } while ((type = gettoken()) == PARENS || type == BRACKETS) { if (type == PARENS) { strcat(out, " function returning"); } else { strcat(out, " array"); strcat(out, token); strcat(out, " of"); } } } int gettoken(void) { int c, getch(void); void ungetch(int); char *p = token; if (pretoken == YES) { pretoken = NO; return tokentype; } while ((c = getch()) == ' ' || c == '\t') ; if (c == '(') { if ((c = getch()) == ')') { strcpy(token, "()"); return tokentype = PARENS; } else { ungetch(c); return tokentype = '('; } } else if (c == '[') { for (*p++ = c; (*p++ = getch()) != ']'; ) ; *p = '\0'; return tokentype = BRACKETS; } else if (isalpha(c)) { for (*p++ = c; isalnum(c = getch()); ) { *p++ = c; } *p = '\0'; ungetch(c); return tokentype = NAME; } else { return tokentype = c; } } void error(char *s) { printf("%s", s); pretoken = YES; } #define BUFSIZE 100 char buf[BUFSIZE]; int bufp = 0; int getch(void) { return (bufp > 0) ? buf[--bufp] : getchar(); } void ungetch(int c) { if (bufp >= BUFSIZE) { printf("ungetch: too many characters\n"); } else { buf[bufp++] = c; } }
入出力結果(Terminal)
$ ./a.out int (*daytab)[13] daytab: pointer to array[13] of int int (*daytab[13] error: missing ) daytab: array[13] of pointer to int ) error: expected name or (dcl) daytab: [13] $
0 コメント:
コメントを投稿