摘要: /*图的邻接矩阵和邻接表的转换,图的遍历,最小生成树等*/ #include "stdio.h" #include "malloc.h" #define INF 32767 //表示正无穷 #define MAXV 100 //最大顶点个数 int visited[MAXV]; //全局数组 //定 阅读全文
posted @ 2016-11-15 20:11 梦想起航2016 阅读(6104) 评论(0) 推荐(0)