图的结构-邻接矩阵
// ---------------------- 图的结构:邻接矩阵 --------------------------//
// 邻接矩阵元素
typedef struct ArcCell{
int adj; // arc value: >0, INFINITY: no link
char *info;
}AcrCell,AdjMatrix[MAX_VERTEX_NUM][MAX_VERTEX_NUM];
// 图的结构
typedef struct{
char vexs[MAX_VERTEX_NUM][5]; // 顶点数组
AdjMatrix arcs; // 邻接矩阵
int vexnum; // 图当前的顶点数
int arcnum; // 图当前边的个数
}MGraph;
// 建立邻接图(key=1为有向网,key=0为无向网)
Status createUDN(MGraph &G,int vexnum,int edgenum,char *names,char *edges,int key){
int i,j,k,value;
// 输入当前图的顶点数,边个数
G.vexnum=vexnum;
G.arcnum=edgenum;
// 各个顶点数据
for(i=0;i for(j=0;j<4;j++){
G.vexs[i][j]=*names;
names++;
}
G.vexs[i][4]='\0';
}
// 初始化邻接矩阵(全为INFINITY)
for(i=0;i for(j=0;j G.arcs[i][j].adj=INFINITY;
G.arcs[i][j].info=NULL;
}
}
// 建立邻接矩阵每条边的数值
for(k=0;k i=int(*edges)-48;
edges++;
j=int(*edges)-48;
edges++;
value=(int(*edges)-48)*10;
edges++;
value+=int(*edges)-48;
edges++;
G.arcs[i][j].adj=value;
if(!key){
G.arcs[j][i].adj=value;
}
}
return OK;
}
// 打印出邻接矩阵
void PrintGraph(MGraph &G){
int i,j;
cout<<"\n//--------------- PrintMatrix -----------------//\n\n ";
for(i=0;i cout<}
求最短路径程序
// ---------------------- 求源点v0到各点的最短路径 --------------------------//
void ShortestPath(MGraph &G,int v0){
int D[MAX_VERTEX_NUM],final[MAX_VERTEX_NUM],i,w,v=0,min;
// 建立队列数组,用以依次储存最短的路径
LinkQueue Q[MAX_VERTEX_NUM];
// 初始化数组
for(i=0;i InitQueue(Q[i]);
D[i]=G.arcs[v0][i].adj;
final[i]=false;
}
final[v0]=true;
// 一个一个循环找出最短距离(共vexnum-1个)
for(i=1;i min=INFINITY;
// 扫描找出非final集中最小的D[]
for(w=0;w if(!final[w] && D[w] v=w;
min=D[w];
}
}
final[v]=true;
// 更新各D[]数据
for(w=0;w if(!final[w] && G.arcs[v][w].adj+min D[w]=G.arcs[v][w].adj+min;
CopyQueue(Q[v],Q[w]);
EnQueue(Q[w],v);
}
}
}
// 打印出结果
cout<<"//--------------- ShortestPath -----------------//\n\n";
cout<<" 出发地->目的地\t最短距离\t详细路径\n\n";
for(i=0;i if(D[i]!=INFINITY){
cout<<" "< "< cout< while(!EmptyQueue(Q[i])){
DeQueue(Q[i],v);
cout<<" -> "< }
cout<<" -> "< }else{
cout<<" "< "<
}
}
cout<<"\n//--------------- ShortestPath -----------------//\n\n\n";
}
主程序
void PrintCity(char *names,int vexnum){
int i,j;
cout<<"城市列表:\n\n";
for(i=0;i cout<<" "< for(j=0;j<4;j++){
cout<<*names;
names++;
}
cout<<" ";
}
cout<<"\n请选择出发城市 >";
}
void main(){
MGraph G;
// 图的结构数据
char *edges,*names;
int vexnum,arcnum,city,kind;
vexnum=10;
arcnum=14;
names="郑州北京天津南昌上海贵阳株洲广州兰州西宁";
edges="01450235035012201591187024503450585056205750604063409835";
// 用户界面
do{
PrintCity(names,vexnum);
cin>>city;
cout<<"\n\n操作:\n0-无向图列表 1-有向图列表\n2-无向图矩阵 3-有向图矩阵\n4-选择城市 5-退出\n\n请选择操作 >";
do{
cin>>kind;
if(kind>=0 && kind <=3){
createUDN(G,vexnum,arcnum,names,edges,kind%2);
switch(kind/2){
case 0:ShortestPath(G,city);
break;
case 1:PrintGraph(G);
break;
}
}
cout<<"\n\n操作:\n0-无向图列表 1-有向图列表\n2-无向图矩阵 3-有向图矩阵\n4-选择城市 5-退出\n\n请选择操作 >";
}
while(kind<4);
}
while(kind<5);
}