1、全国计算机等级考试二级 C 语言操作题 11+2016 年及答案解析(总分:30.00,做题时间:90 分钟)1.给定程序中,函数 fun 的功能是将带头结点的单向链表逆置。即若原链表中从头至尾结点数据域依次为:2、4、6、8、10,逆置后,从头至尾结点数据域依次为: 10、8、6、4、2。 请在程序的下划线处填入正确的内容并把下划线删除, 使程序得出正确的结果。 注意:源程序存放在考生文件夹下的 BLANK1.C 中。不得增行或删行,也不得更改程序的结构! 给定源程序: #include #include #define N 5 typedef struct node int data; s
2、truct node *next; NODE; void fun(NODE *h) NODE *p, *q, *r; /*found*/ p = h-_1_; /*found*/ if (p=_2_) return; q = p-next; p-next = NULL; while (q) r = q-next; q-next = p; /*found*/ p = q; q = _3_; h-next = p; NODE *creatlist(int a) NODE *h,*p,*q; int i; h = (NODE *)malloc(sizeof(NODE); h-next = NULL;
3、 for(i=0; i q=(NODE *)malloc(sizeof(NODE); q-data=ai; q-next = NULL; if (h-next = NULL) h-next = p = q; else p-next = q; p = q; return h; void outlist(NODE *h) NODE *p; p = h-next; if (p=NULL) printf(“The list is NULL!/n“); else printf(“/nHead “); do printf(“-%d“, p-data); p=p-next; while(p!=NULL);
4、printf(“-End/n“); main() NODE *head; int aN=2,4,6,8,10; head=creatlist(a); printf(“/nThe original list:/n“); outlist(head); fun(head); printf(“/nThe list after inverting :/n“); outlist(head); (分数:10.00)_2.给定程序 MODI1.C 中函数 fun 的功能是: 计算 s 所指字符串中含有 t 所指字符串的数目, 并作为函数值返回。 请改正函数 fun 中指定部位的错误, 使它能得出正确的结果。
5、注意: 不要改动 main 函数, 不得增行或删行, 也不得更改程序的结构! 给定源程序: #include #include #define N 80 int fun(char *s, char *t) int n; char *p , *r; n=0; while ( *s ) p=s; /*found*/ r=p; while(*r) if(*r=*p) r+; p+; else break; /*found*/ if(*r= 0) n+; s+; return n; main() char aN,bN; int m; printf(“/nPlease enter string a :
6、“); gets(a); printf(“/nPlease enter substring b : “); gets( b ); m=fun(a, b); printf(“/nThe result is : m = %d/n“,m); (分数:10.00)_3.请编写函数 fun, 函数的功能是: 将放在字符串数组中的 M 个字符串(每串的长度不超过 N), 按顺序合并组成一个新的字符串。函数 fun 中给出的语句仅供参考。 例如, 字符串数组中的 M 个字符串为 AAAA BBBBBBB CC 则合并后的字符串的内容应是: AAAABBBBBBBCC。 提示:strcat(a,b)的功能是将
7、字符串 b 复制到字符串 a 的串尾上,成为一个新串。 注意:部分源程序在文件 PROG1.C 中。请勿改动主函数 main 和其它函数中的任何内容, 仅在函数 fun 的花括号中填入你编写的若干语句。 给定源程序: #include #define M 3 #define N 20 void fun(char aMN, char *b) /* 以下代码仅供参考 */ int i; *b=0; main() char wMN=“AAAA“,“BBBBBBB“,“CC“, a100; int i ; printf(“The string:/n“); for(i=0; i printf(“/n“)
8、; fun(w,a); printf(“The A string:/n“); printf(“%s“,a);printf(“/n/n“); NONO(); (分数:10.00)_全国计算机等级考试二级 C 语言操作题 11+2016 年答案解析(总分:30.00,做题时间:90 分钟)1.给定程序中,函数 fun 的功能是将带头结点的单向链表逆置。即若原链表中从头至尾结点数据域依次为:2、4、6、8、10,逆置后,从头至尾结点数据域依次为: 10、8、6、4、2。 请在程序的下划线处填入正确的内容并把下划线删除, 使程序得出正确的结果。 注意:源程序存放在考生文件夹下的 BLANK1.C 中。
9、不得增行或删行,也不得更改程序的结构! 给定源程序: #include #include #define N 5 typedef struct node int data; struct node *next; NODE; void fun(NODE *h) NODE *p, *q, *r; /*found*/ p = h-_1_; /*found*/ if (p=_2_) return; q = p-next; p-next = NULL; while (q) r = q-next; q-next = p; /*found*/ p = q; q = _3_; h-next = p; NODE
10、 *creatlist(int a) NODE *h,*p,*q; int i; h = (NODE *)malloc(sizeof(NODE); h-next = NULL; for(i=0; i q=(NODE *)malloc(sizeof(NODE); q-data=ai; q-next = NULL; if (h-next = NULL) h-next = p = q; else p-next = q; p = q; return h; void outlist(NODE *h) NODE *p; p = h-next; if (p=NULL) printf(“The list is
11、 NULL!/n“); else printf(“/nHead “); do printf(“-%d“, p-data); p=p-next; while(p!=NULL); printf(“-End/n“); main() NODE *head; int aN=2,4,6,8,10; head=creatlist(a); printf(“/nThe original list:/n“); outlist(head); fun(head); printf(“/nThe list after inverting :/n“); outlist(head); (分数:10.00)_正确答案:()解析
12、:解题思路: 本题是考察使用链表方法,对链表的结点数据进行降序排列。 第一处:使用结构指针p,来控制链表的结束,p 必须指向 h 结构指针的 next 指针,来定位 p 的初始位置。所以应填写:h-next。 第二处:判断 p 指针是否结束,所以应填写:0。 第三处:q 指向原 q 的 next 指针,所以应填:r。2.给定程序 MODI1.C 中函数 fun 的功能是: 计算 s 所指字符串中含有 t 所指字符串的数目, 并作为函数值返回。 请改正函数 fun 中指定部位的错误, 使它能得出正确的结果。 注意: 不要改动 main 函数, 不得增行或删行, 也不得更改程序的结构! 给定源程序
13、: #include #include #define N 80 int fun(char *s, char *t) int n; char *p , *r; n=0; while ( *s ) p=s; /*found*/ r=p; while(*r) if(*r=*p) r+; p+; else break; /*found*/ if(*r= 0) n+; s+; return n; main() char aN,bN; int m; printf(“/nPlease enter string a : “); gets(a); printf(“/nPlease enter substrin
14、g b : “); gets( b ); m=fun(a, b); printf(“/nThe result is : m = %d/n“,m); (分数:10.00)_正确答案:()解析:解题思路: 第一处: 程序中子串是由变量 t 来实现的,再根据下面 while 循环体中语句可知,所以应改为:r=t;。 第二处: 是判断相等的条件,所以应改为:if(*r=0)。3.请编写函数 fun, 函数的功能是: 将放在字符串数组中的 M 个字符串(每串的长度不超过 N), 按顺序合并组成一个新的字符串。函数 fun 中给出的语句仅供参考。 例如, 字符串数组中的 M 个字符串为 AAAA BBBB
15、BBB CC 则合并后的字符串的内容应是: AAAABBBBBBBCC。 提示:strcat(a,b)的功能是将字符串 b 复制到字符串 a 的串尾上,成为一个新串。 注意:部分源程序在文件 PROG1.C 中。请勿改动主函数 main 和其它函数中的任何内容, 仅在函数 fun 的花括号中填入你编写的若干语句。 给定源程序: #include #define M 3 #define N 20 void fun(char aMN, char *b) /* 以下代码仅供参考 */ int i; *b=0; main() char wMN=“AAAA“,“BBBBBBB“,“CC“, a100; int i ; printf(“The string:/n“); for(i=0; i printf(“/n“); fun(w,a); printf(“The A string:/n“); printf(“%s“,a);printf(“/n/n“); NONO(); (分数:10.00)_正确答案:(#include #define M 3 #define N 20 void fun(char aMN, char *b) /* 以下代码仅供参考 */ int i; *b=0; for(i = 0 ; i M ; i+) strcat(b, ai) ; )解析: