1、计算机三级数据库技术(上机操作)机试模拟试卷 91及答案与解析 一、程序设计题 1 函数 ReadDat()实现从数据文件 in dat中读取一篇英文文章存入到字符串数组xx中 l请编写函数 SortCharA(),其函数的功能是:以行为单位对字符按从小到大的顺序进行排序,排序后的结果仍按行重新存入字符串数组 XX中。最后通过main()函数调用函数 WriteDat()。把结果 XX输出到文件 out dat中。 例:原文: dAe, BfC CCbbAA 结果 ,ABCdef AACCbb 原始数据文件存放的格式是:每行的宽度均小于 80个字符,含标点符号和空格。 【试题程序】 #incl
2、ude #include char xx503 1803; unsigned int maxline=0 1 *文章的总行数 * int ReadDat(void); void WriteDat(void); void SortCharA(void) void main() if(ReadDat() printf(”数据文件 IN DAT不能打开 ! n 007”); return; ) SortCharA(); WriteDat(); int ReadDat(void) FII。 E*fp; int i=0: char*P; if(fp=fopen(“in dat”, “r”)=NULL) return 1; while(fgets(xxi, 80, fp)!=NULL) p=strchr(xxi, n); if(p)*p=0; i+; maxline=j: felose(fp); return 0; void WriteDat(void) FILE*fp; unsigned int i; fp=fopen(“out dat”, “W”); for(i=0;ixxik) temp=xxij xxij=xxik; xxik=temp;