我正在Linux中编写一个C程序,它将读取数字列表,对它们进行排序,然后将其输出到文本文件中。我的程序编译得足够好,但是我的输出是……有点奇怪。我刚刚开始使用C进行编码,因此对于可能来自此错误的地方有些不知所措。
我编写的输入文本文件:
4 3 2 1
我的代码:
#include <stdio.h>
#include <stdlib.h>
void sortNum(int *num, int count){
int i,j;
for(i=0;i<=count;i++){
int minIndex=i;
for(j=i+1;j<=count;j++){
if(num[j] < num[minIndex]){
minIndex=j;
}
}
int temp = num[minIndex];
num[minIndex]=num[i];
num[i]=temp;
}
}
int main(int argc, char *argv[]){
int *numbers;
int count=0;
int i=0;
char input[20], output[20];
FILE *fileIn, *fileOut;
numbers = (int *)malloc(sizeof(int));
if(argc != 3){
printf("Please provide the input and output text file names as %s name1 name2\n", argv[0]);
return 0;
}
else{
sscanf(argv[1], "%s", input);
sscanf(argv[2], "%s", output);
}
fileIn = fopen(input, "r");
fileOut = fopen(output, "w");
if(!fileIn){
printf("Input file %s cannot be opened.\n", input);
return 0;
}
else if(!fileOut){
printf("Output file %s cannot be written.\n", output);
return 0;
}
else{
while(!feof(fileIn)){
i++;
numbers = (int *)realloc(numbers, 4 * sizeof(int));
fscanf(fileIn, "%d", &numbers[i]);
printf("%d ", numbers[i]);
}
}
count = i;
free(numbers);
fclose(fileIn);
printf("\n");
sortNum(numbers, count);
printf("\nElements are now sorted: \n");
for(i=0; i <= count; i++){
fprintf(fileOut, "%d", numbers[i]);
printf("%d ", numbers[i]);
}
printf("\n");
fclose(fileOut);
return 0;
}
这是运行程序时得到的输出:
4 3 2 1 134409
Elements are now sorted:
0 1 2 3 4 134409
对于初学者来说,我不确定0
是从哪里写的,也不知道134409
应该代表什么或什么地方。
如果正确完成,则所需的输出应类似于:
4 3 2 1
Elements are now sorted:
1 2 3 4
就故障排除而言,我真的希望能提供更多,但我真的迷失了。也许我忽略了库函数的某些功能?我最初认为这可能与我编写while循环的方式有关,但是现在我不太确定。我非常感谢您的指导。