摘要: #邻接矩阵 #include <stdio.h> #include <string.h> #define MAX_N 500 typedef struct Graph { int mat[MAX_N][MAX_N]; int n; }Graph; void init(Graph *g, int le 阅读全文
posted @ 2020-11-27 03:01 代码附体 阅读(243) 评论(1) 推荐(2) 编辑