无向连通图邻接表的创建输出广度深度遍历

源代码: #include<stdio.h> #define MVNum 100 //最大顶点数 typedef int OtherInfo; //定义数据类型 typedef char VerTexType; //定义数据类型 typedef struct ArcNode //边结点 { int adjvex; //该边所指向的顶点的位置 struct ArcNode *nextarc;//指向
相关文章
相关标签/搜索