[완료]TCPL 에 나오는 예문중 하나인데요.

puresupe의 이미지

1 #include
2 #include
3 #include
4
5 #define MAXWORD 100
6 #define BUFSIZE 100
7 #define NKEYS (sizeof keytab/ sizeof(struct key))
8
9 struct key{
10 char *word;
11 int count;
12 }keytab[] = {
13 "auto",0,
14 "break",0,
15 "case",0,
16 "char",0,
17 "const",0,
18 "continue",0,
19 "default",0,
20 "unsigned",0,
21 "void",0,
22 "volatile",0,
23 "while",0,
24 };
25
26
27 char buf[BUFSIZE]; /*buffer for ungetch*/
28 int bufp = 0; /* next free position in buf */
29
30 int getword(char *,int);
31 int binsearch(char *, struct key *,int);
32
33 // count C keywords
34 main()
35 {
36 int n;
37 char word[MAXWORD];
38
39 while(getword(word,MAXWORD)!=EOF)
40 if(isalpha(word[0]))
41 if((n=binsearch(word,keytab,NKEYS)) >= 0)
42 keytab[n].count++;
43 for(n=0;n 44 if(keytab[n].count>0)
45 printf("%4d %s\n", keytab[n].count, keytab[n].word);
46 return 0;
47 }
48
49 // binsearch: find word in tab[0]...tab[n-1]
50 int binsearch(char* word, struct key tab[],int n)
51 {
52 int cond;
53 int low,high,mid;
54
55 low = 0 ;
56 high = n-1;
57 while(low<=high){
58 mid = (low+high)/2;
59 if((cond = strcmp(word,tab[mid].word))<0)
60 high = mid - 1;
61 else if(cond > 0)
62 low = mid +1;
63 else return mid;
64 }
65 return -1;
66 }
67
68 // getword: get next word or character from input
69 int getword(char *word, int lim)
70 {
71 int c,getch(void);
72 void ungetch(int);
73 char *w = word;
74
75 while(isspace(c=getch()))
76 ;
77 if(c!=EOF)
78 *w++ = c;
79 if(!isalpha(c)){
80 *w = '\0';
81 return c;
82 }
83
84 for(;--lim>0;w++)
85 if(!isalnum(*w = getch())){
86 ungetch(*w);
87 break;
88 }
89 *w = '\0';
90 return word[0];
91 }
92
93 int getch(void) /* get a (possibly pushed back) character */
94 {
95 return (bufp>0)?buf[--bufp]:getchar();
96 }
97
98 void ungetch(int c) /* push character back on input */
99 {
100 if(bufp>=BUFSIZE)
101 printf("ungetch : too many characters\n");
102 else
103 buf[bufp++] = c;
104 }

이건 section 6.3 에나오는 keyword 찾는 예제인데요. 궁금한것은..getword()함수 인데요.
77번 라인에if(c!=EOF)*w++ = c; 이 문장은 왜 필요한지 궁금해서요.
후에 for문에서 모든 입력을 다 받아서 word를 완성시키는데. 왜 앞부분에서 첫번째 문자를 따로 다루는지 모르겠네요.

molla의 이미지

code 를 잘 보시면, 먼저 isspace 함수를 이용하여, white space 가 나오면 빼는 작업을 합니다.
그러다가 white space 가 아닌 문자가 들어오면 실제 읽어들이는 작업을 하는 것이지요. 그런데 이미 white space 인지 아닌지를 위해 한글자를 읽어버렸기 때문에 해당 글자에 대한 처리를 해 주는 것이지요.

뭐 설명이 잘 되었나요.
(더 쉽게 쓰기가... 일단 코드가 indentation이 안 되어 있어 보기가 너무 힘들군요.)

puresupe의 이미지

아 그러쿤요! 감사합니다 ㅎ

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.