欢迎来到天天文库
浏览记录
ID:24466071
大小:79.80 KB
页数:5页
时间:2018-11-14
《管道铺设施工的最佳方案-----------完整程序代码》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、1)内容:需要在某个城市n个居民小区之间铺设煤气管道,则在这n个居民小区之间只需要铺设n-1条管道即可。假设任意两个小区之间都可以铺设管道,但由于地理环境不同,所需要的费用也不尽相同。选择最优的方案能使总投资尽可能小,这个问题即为求无向网的最小生成树。2)要求:在可能假设的m条管道中,选取n-1条管道,使得既能连通n个小区,又能使总投资最小。每条管道的费用以网中该边的权值形式给出,网的存储采用邻接表的结构。3)测试数据:使用下图给出的无线网数据作为程序的输入,求出最佳铺设方案。右侧是给出的参考解。4)输入输出:参
2、考完整代码:#include"iostream"#include"stdlib.h"#defineMAX_VERTEX_NUM20typedeffloatWeightType;typedefstructArcNode{intadjvex;WeightTypeweight;structArcNode*nextarc;}ArcNode;typedefstructVertexNode{chardata;ArcNode*firstarc;}VertexNode,AdjList[MAX_VERTEX_NUM];typede
3、fstruct{AdjListvertices;intvexnum,arcnum;intkind;}ALGraph;intLocateVex(ALGraphG,charv){inti;for(i=0;i4、图的类型:";std::cin>>G.vexnum>>G.arcnum>>G.kind;for(i=0;i>G.vertices[i].data;G.vertices[i].firstarc=NULL;}for(k=0;k>vi>>vj>>weight;i=LocateVex(G,vi);j=LocateVex5、(G,vj);p=(ArcNode*)malloc(sizeof(ArcNode));p->adjvex=j;p->weight=weight;p->nextarc=G.vertices[i].firstarc;G.vertices[i].firstarc=p;if(G.kind==2){q=(ArcNode*)malloc(sizeof(ArcNode));q->adjvex=i;q->weight=p->weight;q->nextarc=G.vertices[j].firstarc;G.vertices[j6、].firstarc=q;}}}intMinEdge(WeightTypelowcost[],intvexmun){inti,k;WeightTypej;k=0;while(lowcost[k]==0){k++;}j=lowcost[k];for(i=k+1;i7、MAX_VERTEX_NUM];inti,k;ArcNode*p;for(i=0;iadjvex]=p->weight;p=p->nextarc;}lowcost[v0]=0;for(i=0;i=G.vexnum)r8、eturn;std::cout<<"("<weightadjvex]){adjvex[p->adjvex]=k;lowcost[p->adjvex]=p->w
4、图的类型:";std::cin>>G.vexnum>>G.arcnum>>G.kind;for(i=0;i>G.vertices[i].data;G.vertices[i].firstarc=NULL;}for(k=0;k>vi>>vj>>weight;i=LocateVex(G,vi);j=LocateVex
5、(G,vj);p=(ArcNode*)malloc(sizeof(ArcNode));p->adjvex=j;p->weight=weight;p->nextarc=G.vertices[i].firstarc;G.vertices[i].firstarc=p;if(G.kind==2){q=(ArcNode*)malloc(sizeof(ArcNode));q->adjvex=i;q->weight=p->weight;q->nextarc=G.vertices[j].firstarc;G.vertices[j
6、].firstarc=q;}}}intMinEdge(WeightTypelowcost[],intvexmun){inti,k;WeightTypej;k=0;while(lowcost[k]==0){k++;}j=lowcost[k];for(i=k+1;i7、MAX_VERTEX_NUM];inti,k;ArcNode*p;for(i=0;iadjvex]=p->weight;p=p->nextarc;}lowcost[v0]=0;for(i=0;i=G.vexnum)r8、eturn;std::cout<<"("<weightadjvex]){adjvex[p->adjvex]=k;lowcost[p->adjvex]=p->w
7、MAX_VERTEX_NUM];inti,k;ArcNode*p;for(i=0;iadjvex]=p->weight;p=p->nextarc;}lowcost[v0]=0;for(i=0;i=G.vexnum)r
8、eturn;std::cout<<"("<weightadjvex]){adjvex[p->adjvex]=k;lowcost[p->adjvex]=p->w
此文档下载收益归作者所有