#define MaxVertexNum 100
typedef struct ArcNode( //边表节点
int adjvex;
struct ArcNode *next;
}ArcNode;
typedef struct VNode{ //顶点表节点
VertexType data;
ArcNode *first;
}VNode, AdjList[MaxVertexNum];
typedef struct{
AdjList vertices; //邻接表
int vexunm, arcnum;
}ALGraph;