無向圖鄰接表改成鄰接矩陣

#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
相關文章
相關標籤/搜索