//采用邻接表表示法创建无向图#include<iostream>using namespacestd;#defineMVNnm 100#defineOK 1typedefcharVerTexType;typedefintOtherInfo;typedefstructArcNode{intadjvex;structArcNode*nextarc;OtherInfo info; }ArcNode;typedefstructVNode{VerTexType data; ArcNode* firstarc; }VNode, adjList[MVNnm];typedefstruc...