摘要: fscanf(file, "%d", &iVertexNum); // Read number of Verticesdouble **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) 推荐(0) 编辑