程序从"numbers.txt"文件中获取一些txt输入。它首先计算该文本文件中所有数字的数量(freqCount),然后再次读取该文件,并使用malloc创建两个数组A和B,这两个数组的大小都等于文本文件中的所有数字的数量。到目前为止还不错。
现在我想增加数组A的大小,这样我就可以在其中添加更多的参数"freqCount"。在我创建的freqRepeat函数中,有一个函数increaseSize,它采用相同的数组A,并使用realloc在其中添加2*freqCount更多的参数。
在调用上述函数increaseSize后,出现了一个问题,因为只有部分参数保持不变,而且很少有参数会变成一个巨大的数字。这是一个重大问题。有人能为我提供一些帮助吗?感谢
ps。我在代码的末尾包含了示例性的文本文件输入。
#include <stdio.h>
#include <stdlib.h>
int read_ints(const char *file_name, int *result);
int *scanFreq(const char *file_name, int *A, int *B, int *resultTab);
int freqRepeat(int *A, int *B, int freqCount);
int *increaseSize(int *A, int freqCount);
void calcmalc(int freqCount);
int *nextArray(int *A, int *B, int freqCount, int freqStart);
int main()
{
int result = 0;
int resultTab = 0;
int freqCount;
freqCount = read_ints("numbers.txt", &result);
printf("freqCount is %d", freqCount);
int *A = (int *)malloc(freqCount * sizeof(int));
int *B = (int *)malloc(freqCount * sizeof(int));
scanFreq("numbers.txt", A, B, &resultTab);
freqRepeat(A, B, freqCount);
}
int read_ints(const char *file_name, int *result)
{
FILE *file = fopen("numbers.txt", "r");
int i = 0;
int n = 0; //row number//
if (file == NULL)
{
printf("unable to open file %s", file_name);
}
while (fscanf(file, "%d", &i) == 1)
{
n++;
printf("%dn ", i);
*result += i;
printf("n we are at row nr. %d sum of this number and all numbers before is: %dn", n, *result);
}
fclose(file);
return n;
}
int *scanFreq(const char *file_name, int *A, int *B, int *resultTab)
{
FILE *file = fopen("numbers.txt", "r");
int i = 0;
int n = 0; //row number//
if (file == NULL)
{
printf("unable to open file %s", file_name);
}
while (fscanf(file, "%d", &i) == 1)
{
n++;
*resultTab += i;
B[n] = i;
A[n] = *resultTab;
}
fclose(file);
return 0;
}
int freqRepeat(int *A, int *B, int freqCount)
{
int lastFrequency;
lastFrequency = freqCount;
freqCount = freqCount + freqCount;
A = increaseSize(A, freqCount);
printf("nnwcis enternn");
getchar();
for (int i = 1; i < 15; i++)
{
printf("array argument after increasing array size %d n", A[i]);
// why some of the arguments have been changed ????????
}
return 0;
}
int *increaseSize(int *A, int freqCount)
{
return realloc(A, 2 * sizeof(int));
}
text input:
-14
+15
+9
+19
+18
+14
+14
-18
+15
+4
-18
-20
-2
+17
+16
-7
-3
+5
+1
-5
-11
-1
-6
-20
+1
+1
+4
+18
+5
-20
-10
+18
+5
-4
-5
-18
+9
+6
+1
-19
+13
+10
-22
-11
-14
-17
-10
-1
-13
+6
-17
无条件调整数组大小,使其仅包含两个int
元素。总是对这两个元素之外的任何元素的访问都将导致未定义的行为。
你可能想做
return realloc(A, freqCount * sizeof(int));