这是我以前的问题的编辑、更正、更具体的版本。所以我正在做一个家庭作业,我们必须使用一个滑动窗口来打印来自标准输入的输入文件中的注释和字符串。我非常接近,但缺少一些东西。以下是我的代码、输入、当前输出和正确的输出。//
评论和忽略字符有效。我不完全确定字符串和 /**/ 注释中的问题我无法摆脱最初的星号/*
而不搞砸它找到*/
. 感谢任何可以提供帮助的人。
代码:
#include <stdio.h>
typedef enum
{
Initial,
Comment,
String,
Char,
CPPComment
} extrema;
int main()
{
int c, c1 = 0, c2 = 0;
extrema state = Initial;
extrema next = Initial;
while(1)
{
switch(state)
{
case Initial: next = ((c2 == '*' && c1 == '/') ? Comment : (c2 == '\"') ? String : (c2 == '/' && c1 == '/') ? Char : (c2 == '\'') ? CPPComment : Initial); break;
case Comment: next = ((c2 == '/' && c1 == '*') ? Initial : Comment); break;
case String: next = ((c2 == '\"' && c1 != '\\') ? Initial : String); break;
case Char: next = ((c2 == '\n') ? Initial : Char); break;
case CPPComment: next = ((c2 == '\'' && c1 != '\\') ? Initial : CPPComment); break;
default: next = state;
}
if(state == Comment)
{
if(c1 == '*')
{
if(c2 != '/')
putchar(c1);
else
putchar('\n');
}
else
putchar(c1);
}
else if(state == String)
{
if(c2 != '\"' || (c2 == '\"' && c1 != '\\'))
putchar(c2);
}
else if(state == CPPComment)
{
putchar(c2);
}
c = getchar(); if( c < 0) break;
c1 = c2; c2 = c; // slide window
//printf("%i",state);
state = next;
// c2 is the current input byte and c1 is the previous input byte
}
return 0;
}
输入:
/* recognize '...' otherwise see " as start of string: */
int c='\"', d='\'', e = '\012'; // comment line 3
/* recognize "..." otherwise see comments here: */
char s[] = "abc/*not a comment*/efg\"ZZ\'";
char t[] = "ABC//not a comment//EFG\x012\/\/";
char *p = ""; //
int d = '/*'; // comment line 13
/*/*/
/**/
/*Z*/
/***/
/****/
/**A**/
我的输出:
* recognize '...' otherwise see " as start of string:
comment line 3
* recognize "..." otherwise see comments here:
abc/*not a comment*/efg\ZZ\'"ABC//not a comment//EFG\x012\/\/""
comment line 13
*
*Z
**
***
**A*
正确的输出:
recognize '...' otherwise see " as start of string:
comment line 3
recognize "..." otherwise see comments here:
abc/*not a comment*/efg\"ZZ\'
ABC//not a comment//EFG\x012\/\/
comment line 13
/
Z
*
**
*A*