我已经从两个文件中读取了字符串并将它们存储到两个单独的数组中,然后我尝试对它们进行排序并将它们写入另一个文件......这部分按预期的方式工作,但我真正需要做的是组合字符串从两个数组合二为一,以便我可以按字母顺序对它们进行排序,然后写入文件,但问题是当我尝试将这两个数组存储到一个数组中时,我得到分段错误作为错误消息..我真的不知道如何将这两个数组存储到另一个数组中以便我可以按顺序对其进行排序...我知道如何对其进行排序我只是不确定如何将它们读入另一个数组...我不能使用#DEFINE,因为我将把所有这些写成一个测试代码的函数......
我尝试过类似的东西
新[i] = str;
并且:
strcpy(新[i],str)
但这些都不起作用......任何帮助将不胜感激......
这是我的代码:
#include<stdio.h>
#include<string.h>
main (void)
{
char str[200];
char str2[300];
char new[300];
char temp [300];
int linenumber=0;
FILE *fa = fopen ("book1.dat", "r");
FILE *fb = fopen ("book2.dat", "r");
FILE *fc = fopen ("fixed.txt", "w");
int i=0;
int j=0;
int k;
/*read the strings into an array while it is not the end of file*/
while(!feof(fa)&& !feof(fb))
{
linenumber++;
fscanf(fa,"%[^\n]\n",str);
fscanf(fb,"%[^\n]\n",str2);
/*compare strings in array and write to array*/
if(strcmp(str2, str)<0)
{
fprintf(fc, "%s\n", str2);
fprintf(fc, "%s\n", str);
}
if (strcmp(str2,str)>0)
{
fprintf(fc, "%s\n", str);
fprintf(fc, "%s\n", str2)
}
/*print out the results of str */
printf("%s", str);
}
}