邻接表存储结构建立无向图.pdfVIP

  • 0
  • 0
  • 约3.05千字
  • 约 3页
  • 2022-04-07 发布于江苏
  • 举报
//算法功能:采用邻接表存储结构建立无向图 #include stdio.h #include stdlib.h #define OK 1 #define NULL 0 #define MAX_VERTEX_NUM 20 // 最大顶点数 typedef int Status; // 函数的类型,其值是函数结果状态代码 typedef char VertexType; typedef int VRType; typedef int InforType; typedef struct ArcNode { int adjvex; //该边

文档评论(0)

1亿VIP精品文档

相关文档