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

源代码: #include<stdio.h> #define MaxInt 32767 //表示极大值 #define MVNum 100 //最大顶点数 typedef char VerTexType; //定义数据类型 typedef int ArcType; typedef struct { VerTexType vexs[MVNum]; //顶点表 ArcType arcs[MVNum][
相关文章
相关标签/搜索