(C语言、数据结构)邻接矩阵的建立、插入、输出、深度遍历、宽度遍历

#define ERROR 0 #define OK 1 #define Overflow 2 #define Underflow 3 #define NotPresent 4 #define Duplicate 5 typedef int ElemType; typedef struct { ElemType **a;         //邻接矩阵 int n;                
相关文章
相关标签/搜索