我必须编写一个程序来存储和打印内存中的整数。我必须使用重新分配。基本上,该程序为 2 个整数分配大小。当输入给出 2 个 int 时,它应该为 1 个 int 重新分配空间并打印出 double。接下来,当输入给定 3 个 int 时,它应该为 int 再分配 2 个空间并打印出 double.. 等等..
Test cases:
input file in.0:
------
4
------
expected output:
------
4
------
=================================================
input file in.1:
------
4 5
------
expected output:
------
4
5
double
------
==================================================
input file in.2:
------
4 5 3
------
expected output:
------
4
5
double
3
double
------
===================================================
input file in.3:
------
4 5 3 2 9
------
expected output:
------
4
5
double
3
double
2
9
double
我写了这个程序,但它没有正确分配内存。有人可以指导我的写作方向吗?
int main(void)
{
int c;
int digit;
int count = 0;
int d_size = 1;
int init_size = 2;
int *p = (int *) malloc(sizeof(int) * init_size);
while((c = scanf("%i", &digit)) != EOF)
{
if (c == 1)
{
*(p+count) = digit;
count++;
}
else
{
printf("not valid");
}
printf("%i\n", digit);
if (count >= 2)
{
printf("double\n");
p = (int *) realloc(p, sizeof(int) * d_size);
d_size = d_size * 2;
}
}