申请一个1500*1500的双精度数组空间,程序运行不动?
im2=allocate_f_2d(n_mod,n_mod);double **allocate_f_2d(int r,int c)
/*给二维浮点数组申请储存空间*/
{
double **a=new double*[r];
for(int i=0;i<r;i++)
a[i]=new double[c];
return a;
}
2013-02-05 20:01
2013-02-06 08:44

2013-02-06 12:14
坐等结果
2013-02-06 17:16
2013-02-07 14:08
2013-02-07 14:10
2013-02-07 14:28
2013-02-07 14:48
2013-02-07 14:54
2013-02-09 19:47