以下面的例子,问一下“删除操作后”的释放问题。
/*数组中有10个数,输出。删除其中某一个后,再输出。*/
#include <stdio.h>
#define NUM 10 // 数组中定义10个数
void del(int *);
void out(int *,int);
main()
{
int m[NUM]={1,2,3,4,5,6,7,8,9,10};
out(m,NUM);
del(m);
out(m,NUM-1); //我想问的问题在这里,改为 out(m,NUM); 试试?见后
return 0;
}
void del(int *num) //删除函数
{
int i=0,j=0,del=0;
printf("choose the number to delete:");
scanf("%d",&del);
for(i=0;i<NUM;i++)
if(num[i]==del) break; //找出删除项下标
for(j=i;j<NUM-1;j++)
num[j]=num[j+1]; // 后项前移
}
void out(int *num,int k) //输出函数
{
int i=0;
for(i=0;i<k;i++)
printf("%5d",num[i]);
printf("\n");
}
运行结果:
1 2 3 4 5 6 7 8 9 10
choose the number to delete:5
1 2 3 4 6 7 8 9 10
Press any key to continue
改为 out(m,NUM);后运行结果
1 2 3 4 5 6 7 8 9 10
choose the number to delete:5
1 2 3 4 6 7 8 9 10 10
Press any key to continue
这最后一个10 还是存在的,曾经问过达人,说是这最后一个10应该释放了的……
到底怎么回事?想要将这部分空间释放又该怎么做呢?