摘要: Prime算法View Code #include <stdio.h>#include <stdlib.h>#define MAX 100/********ÁÚ½Ó¾ØÕó½á¹¹***************/typedef struct graph{ char vers[MAX]; int numVertex,numEdge; int arc[MAX][MAX];}Graph;void CreateGraph(Graph *G){ int i,j; 阅读全文
posted @ 2012-05-11 09:44 徐露 阅读(196) 评论(0) 推荐(0) 编辑