无向图邻接表改成邻接矩阵

#include <stdio.h> #include <string.h> #include <stdlib.h> int a[100][100];//邻接矩阵的载体 typedef struct ArcNode{ int adjvex; struct ArcNode *nextarc; }ArcNode; //表结点 typedef struct VNode{ char dat
相关文章
相关标签/搜索