问答题

函数readDat()的功能是从文件IN22.DAT中读取20行数据存放到字符串数组xx中(每行字符串长度均小于80)。请编制函数jsSort(),该函数的功能是:以行为单位对字符串按下面给定的条件进行排序,排序后的结果仍按行重新存入字符串数组xx中,最后调用函数writeDat()把结果xx输出到文件OUT22.DAT中。<br>条件:从字符串中间一分为二,左边部分按字符的ASCII值降序排序,排序后,左边部分与右边部分按例子所示进行交换。如果原字符串长度为奇数,则最中间的字符不参加处理,字符仍放在原位置上。<br>例如, 位置 0 1 2 3 4 5 6 7 8<br>源字符串 a b c d h g f e<br>2 3 4 9 8 7 6 5<br>则处理后字符串 h g f e d c b a<br>8 7 6 5 9 4 3 2<br>注意:部分程序已给出。<br>请勿改动主函数main()、读函数readDat()和写函数writeDat()的内容。<br>inc lude〈 st dio. h><br>inc lude〈 s t ring. h><br>inc lude〈 conio, h><br>char xx[20] [80];<br>void jsSort()<br>{<br>}<br>main ()<br>{<br>readDat ();<br>jsSort ();<br>writeDat ();<br>}<br>readDat ()<br>{<br>FILE *in;<br>int i=0;<br>char *p;<br>in= fopen("IN22.DAT", "r");<br>while(i〈 20 && fgets(xx[i], 80, in) != NULL)<br>{<br>p = strchr(xx[i], '\n');<br>if(p) *p = 0;<br>i++;<br>}<br>fclose(in);<br>}<br>writeDat ()<br>{<br>FILE *out;<br>int i;<br>clrscr ();<br>ut = fopen("OUT22.DAT", "w");<br>for(i = 0; i〈 20; i++)<br>{<br>printf("%skn", xx[i]);<br>fprintf(out, "%sin", xx[i]);<br>}<br>fclose(out);<br>}


火星搜题