摘要: ```c++ #include #include #include #define MAX_VERTEX_NUM 20 //最大顶点数 using namespace std; typedef char VertexType; //顶点数据类型 //表结点 typedef struct ArcNode{ int adjvex; //该弧所指的顶点位置 struct ArcNode *nextarc 阅读全文
posted @ 2019-12-21 13:35 翁德彪 阅读(250) 评论(0) 推荐(0) 编辑