如何使用malloc申请一个二位数组

 

fscanf(file, "%d", &iVertexNum); // Read number of Vertices

double **G = (double **)malloc(iVertexNum * sizeof(*G));
for (i = 0; i < iVertexNum; i++)
    G[i] = (double *)malloc(iVertexNum * sizeof(*G[i]));

主要避免实验时邻接矩阵时节点过多无法使用一般数组存储。 

posted @ 2013-10-05 03:00  censai  阅读(257)  评论(0编辑  收藏  举报