数据结构 图的创建 C语言版

#include <stdio.h> #include <stdlib.h> #define max_vertex_num 100 //最多顶点个数 typedef char VertexData; typedef int AdjType ; typedef int OtherInfo ; typedef struct ArcNode { AdjType adj; //对于无权图 用1表示相邻
相关文章
相关标签/搜索