背景
对于用C语言提交的代码高尔夫,我需要一个处理工具。像在许多其他语言中一样,空格在C源代码中几乎无关紧要(但并非总是如此!)-仍然使代码对人类更易理解。一个不包含单个冗余空格的,功能全面的C程序通常很难读取。
因此,我喜欢用C编写代码以提交包含空格和注释的代码高尔夫球,因此程序在编写时保持可理解的结构。最后一步是删除所有注释和多余的空格。这是一项繁琐而漫不经心的任务,实际上应该由计算机程序的实习生来完成。
任务
根据以下规则,编写程序或函数,以消除某些“预查询”的C源代码中的注释和多余的空格:
- 一个
\
(反斜杠)在该行的最后一个字符是续行。如果找到此行,则必须将以下行视为同一逻辑行的一部分(例如,可以在执行其他任何操作之前将其\
和以下\n
(换行符)完全删除) - 注释将仅使用单行格式,以开头
//
。因此,要删除它们,无论//
在字符串文字之外遇到的任何地方,都忽略逻辑行的其余部分(请参见下文)。 - 空格字符是
(空格),
\t
(制表符)和\n
(换行符,因此这里是逻辑行的结尾)。 当找到空白序列时,请检查其周围的非空白字符。如果
- 它们都是字母数字或下划线(范围
[a-zA-Z0-9_]
)或 - 两者都是
+
或 - 两者都是
-
或 - 前一个是
/
,下一个是*
然后将序列替换为一个空格(
)字符。
否则,请完全消除该顺序。
此规则有一些例外:
- 预处理程序伪指令必须出现在输出中它们自己的行上。预处理程序指令是以开头的行
#
。 - 在字符串文字或字符文字中,您不应删除任何空格。任何不以奇数个反斜杠()直接开头的
"
(双引号)/'
(单引号)都\
以字符串文字 / 字符文字开头或结尾。您可以确保字符串和字符文字在它们开始的同一行结束。字符串文字和字符文字不能嵌套,所以'
一个内部的字符串文字,以及一个"
一个内部字符文字没有任何特殊含义。
- 它们都是字母数字或下划线(范围
I / O规格
输入和输出必须是包含换行符的字符序列(字符串)或不包含换行符的字符串数组/列表。如果选择使用数组/列表,则每个元素代表一行,因此换行符在每个元素之后都是隐式的。
您可以假定输入是有效的C程序源代码。这也意味着它仅包含可打印的ASCII字符,制表符和换行符。允许输入格式不正确的行为。
开头和结尾的空白/空行是不允许的。
测试用例
输入
main() { printf("Hello, World!"); // hi }
输出
main(){printf("Hello, World!");}
输入
#define max(x, y) \ x > y ? x : y #define I(x) scanf("%d", &x) a; b; // just a needless comment, \ because we can! main() { I(a); I(b); printf("\" max \": %d\n", max(a, b)); }
输出
#define max(x,y)x>y?x:y #define I(x)scanf("%d",&x) a;b;main(){I(a);I(b);printf("\" max \": %d\n",max(a,b));}
输入
x[10];*c;i; main() { int _e; for(; scanf("%d", &x) > 0 && ++_e;); for(c = x + _e; c --> x; i = 100 / *x, printf("%d ", i - --_e)); }
输出
x[10];*c;i;main(){int _e;for(;scanf("%d",&x)>0&&++_e;);for(c=x+_e;c-->x;i=100/ *x,printf("%d ",i- --_e));}
输入
x; #include <stdio.h> int main() { puts("hello // there"); }
输出
x; #include<stdio.h> int main(){puts("hello // there");}
输入(真实示例)
// often used functions/keywords: #define P printf( #define A case #define B break // loops for copying rows upwards/downwards are similar -> macro #define L(i, e, t, f, s) \ for (o=i; o e;){ strcpy(l[o t], l[o f]); c[o t]=c[s o]; } // range check for rows/columns is similar -> macro #define R(m,o) { return b<1|b>m ? m o : b; } // checking for numerical input is needed twice (move and print command): #define N(f) sscanf(f, "%d,%d", &i, &j) || sscanf(f, ",%d", &j) // room for 999 rows with each 999 cols (not specified, should be enough) // also declare "current line pointers" (*L for data, *C for line length), // an input buffer (a) and scratch variables r, i, j, o, z, c[999], *C, x=1, y=1; char a[999], l[999][999], (*L)[999]; // move rows down from current cursor position D() { L(r, >y, , -1, --) r++ ? strcpy(l[o], l[o-1]+--x), c[o-1]=x, l[o-1][x]=0 : 0; c[y++] = strlen(l[o]); x=1; } // move rows up, appending uppermost to current line U() { strcat(*L, l[y]); *C = strlen(*L); L(y+1, <r, -1, , ++) --r; *l[r] = c[r] = 0; } // normalize positions, treat 0 as max X(b) R(c[y-1], +1) Y(b) R(r, ) main() { for(;;) // forever { // initialize z as current line index, the current line pointers, // i and j for default values of positioning z = i = y; L = l + --z; C = c + z; j = x; // prompt: !r || y/r && x > *C ? P "end> ") : P "%d,%d> ", y, x); // read a line of input (using scanf so we don't need an include) scanf("%[^\n]%*c", a) // no command arguments -> make check easier: ? a[2] *= !!a[1], // numerical input -> have move command: // calculate new coordinates, checking for "relative" N(a) ? y = Y(i + (i<0 | *a=='+') * y) , x = X(j + (j<0 || strchr(a+1, '+')) * x) :0 // check for empty input, read single newline // and perform <return> command: : ( *a = D(), scanf("%*c") ); switch(*a) { A 'e': y = r; x = c[r-1] + 1; B; A 'b': y = 1; x = 1; B; A 'L': for(o = y-4; ++o < y+2;) o<0 ^ o<r && P "%c%s\n", o^z ? ' ' : '>', l[o]); for(o = x+1; --o;) P " "); P "^\n"); B; A 'l': puts(*L); B; A 'p': i = 1; j = 0; N(a+2); for(o = Y(i)-1; o<Y(j); ++o) puts(l[o]); B; A 'A': y = r++; strcpy(l[y], a+2); x = c[y] = strlen(a+2); ++x; ++y; B; A 'i': D(); --y; x=X(0); // Commands i and r are very similar -> fall through // from i to r after moving rows down and setting // position at end of line: A 'r': strcpy(*L+x-1, a+2); *C = strlen(*L); x = 1; ++y > r && ++r; B; A 'I': o = strlen(a+2); memmove(*L+x+o-1, *L+x-1, *C-x+1); *C += o; memcpy(*L+x-1, a+2, o); x += o; B; A 'd': **L ? **L = *C = 0, x = 1 : U(); y = y>r ? r : y; B; A 'j': y<r && U(); } } }
输出
#define P printf( #define A case #define B break #define L(i,e,t,f,s)for(o=i;o e;){strcpy(l[o t],l[o f]);c[o t]=c[s o];} #define R(m,o){return b<1|b>m?m o:b;} #define N(f)sscanf(f,"%d,%d",&i,&j)||sscanf(f,",%d",&j) r,i,j,o,z,c[999],*C,x=1,y=1;char a[999],l[999][999],(*L)[999];D(){L(r,>y,,-1,--)r++?strcpy(l[o],l[o-1]+--x),c[o-1]=x,l[o-1][x]=0:0;c[y++]=strlen(l[o]);x=1;}U(){strcat(*L,l[y]);*C=strlen(*L);L(y+1,<r,-1,,++)--r;*l[r]=c[r]=0;}X(b)R(c[y-1],+1)Y(b)R(r,)main(){for(;;){z=i=y;L=l+--z;C=c+z;j=x;!r||y/r&&x>*C?P"end> "):P"%d,%d> ",y,x);scanf("%[^\n]%*c",a)?a[2]*=!!a[1],N(a)?y=Y(i+(i<0|*a=='+')*y),x=X(j+(j<0||strchr(a+1,'+'))*x):0:(*a=D(),scanf("%*c"));switch(*a){A'e':y=r;x=c[r-1]+1;B;A'b':y=1;x=1;B;A'L':for(o=y-4;++o<y+2;)o<0^o<r&&P"%c%s\n",o^z?' ':'>',l[o]);for(o=x+1;--o;)P" ");P"^\n");B;A'l':puts(*L);B;A'p':i=1;j=0;N(a+2);for(o=Y(i)-1;o<Y(j);++o)puts(l[o]);B;A'A':y=r++;strcpy(l[y],a+2);x=c[y]=strlen(a+2);++x;++y;B;A'i':D();--y;x=X(0);A'r':strcpy(*L+x-1,a+2);*C=strlen(*L);x=1;++y>r&&++r;B;A'I':o=strlen(a+2);memmove(*L+x+o-1,*L+x-1,*C-x+1);*C+=o;memcpy(*L+x-1,a+2,o);x+=o;B;A'd':**L?**L=*C=0,x=1:U();y=y>r?r:y;B;A'j':y<r&&U();}}}
这是代码高尔夫球,因此最短(以字节为单位)的有效答案将获胜。