摘要: #include "stdio.h" #include #include using namespace std; //邻接矩阵 struct graph{ int vertexs; //顶点个数 int edges; //边的条数 char* ver; //描述顶点的一维数组 int** edg; //描述边的二维数组 }; //图的初始化 vo... 阅读全文
posted @ 2019-05-15 16:45 追风的小蚂蚁 阅读(227) 评论(0) 推荐(0) 编辑