- 论坛徽章:
- 0
|
ansi c 的数组的问题,急
typedef int T;
void Release(T **a,size_t m)
{
size_t row;
for(row=0;row<m;row++)
{
if(a[row]!=NULL)
{
free(a[row]);
}
}
free(a);
}
T **Allocate(size_t m,size_t n)
{
T **a;
size_t row;
int success = 1;
a = (T **)malloc(m*sizeof *a);
if(a!=NULL)
{
for(row =0;row<m;row ++)
{
a[row]=malloc(n * sizeof *a[row]);
if(a[row]==NULL)
{
sucess=0;
}
}
if(1!=sucess)
{
Release(a,m);
a=NULL;
}
}
return a;
}
T **array;
array = Allocate(row,col); |
|