当前位置:   article > 正文

南邮数据结构实验三---图的基本运算及飞机换乘次数最少问题_南邮大数据结构实验三图地基本运算及飞机换乘次数最少问题

南邮大数据结构实验三图地基本运算及飞机换乘次数最少问题

一、 实验目的和要求

1.掌握在图的邻接矩阵和邻接表存储结构实现图的基本运算的算法。学习使用图算法解决应用问题的方法。

(1). 验证教材中关于在邻接矩阵和邻接表两种不同存储结构上实现图的基本运算的算法

(2)在邻接矩阵和邻接表存储结构上实现图的深度和宽度优先遍历算法。

(3)在两种储存结构上面分别实现Dijkstra、prim、Floyd算法

2.飞机最少换乘次数问题。


程序一:邻接矩阵表示的图的运算

  1. #include <cstdio>
  2. #include <iostream>
  3. #include <algorithm>
  4. #include <queue>
  5. #include <vector>
  6. #include <string>
  7. #include <cstring>
  8. #define INF 1e8
  9. #define Size 200
  10. using namespace std;
  11. template<class T>
  12. class MGraph
  13. {
  14. public:
  15. MGraph(int mSize);
  16. ~MGraph();
  17. bool Insert(int u,int v,int w);
  18. bool Remove(int u,int v);
  19. bool Exist(int u,int v)const;
  20. void DFS();
  21. void BFS();
  22. void Dijkstra(int v,T *d,int *path);
  23. void Floyd(int d[][Size],int path[][Size]);
  24. void prim(int k,int *nearest,T* lowcost);
  25. protected:
  26. int Choose(int *d,bool *s);
  27. void DFS(int v,bool *visited);
  28. void BFS(int v,bool *visited);
  29. T **a;
  30. int n,e;
  31. };
  32. template<class T>
  33. MGraph<T>::MGraph(int mSize)
  34. {
  35. n=mSize;e=0;
  36. a=new T*[n];
  37. for(int i=0;i<n;i++)
  38. {
  39. a[i]=new T[n];
  40. for(int j=0;j<n;j++)
  41. {
  42. a[i][j]=INF;
  43. }
  44. a[i][i]=0;
  45. }
  46. }
  47. template<class T>
  48. MGraph<T>::~MGraph()
  49. {
  50. for(int i=0;i<n;i++)
  51. {
  52. delete []a[i];
  53. }
  54. delete []a;
  55. }
  56. template<class T>
  57. bool MGraph<T>::Exist(int u,int v)const
  58. {
  59. if(u<0||v<0||u>n-1||v>n-1||u==v||a[u][v]==INF) return false;
  60. return true;
  61. }
  62. template<class T>
  63. bool MGraph<T>::Insert(int u,int v,int w)
  64. {
  65. if(u<0||v<0||u>n-1||v>n-1||u==v ) return false;
  66. if(a[u][v]!=INF) return false;
  67. a[u][v]=w;
  68. e++;
  69. return true;
  70. }
  71. template<class T>
  72. bool MGraph<T>::Remove(int u,int v)
  73. {
  74. if(u<0||v<0||u>n-1||v>n-1||u==v)return false;
  75. if(a[u][v]==INF)return false;
  76. a[u][v]=INF;
  77. e--;
  78. return true;
  79. }
  80. template<class T>
  81. void MGraph<T>::DFS()
  82. {
  83. int i;
  84. bool *visited=new bool[n];
  85. for(i=0;i<n;i++)
  86. visited[i]=false;
  87. for(i=0;i<n;i++)
  88. {
  89. if(visited[i]==false)
  90. {
  91. DFS(i,visited);
  92. }
  93. }
  94. cout<<endl;
  95. delete []visited;
  96. }
  97. template<class T>
  98. void MGraph<T>::DFS(int v,bool *visited)
  99. {
  100. visited[v]=true;
  101. printf(" %d ",v);
  102. for(int u=0;u<n;u++)
  103. {
  104. if(a[v][u]!=INF && visited[u]== false)
  105. {
  106. DFS(u,visited);
  107. }
  108. }
  109. }
  110. template<class T>
  111. void MGraph<T>::BFS()
  112. {
  113. int i;
  114. bool *visited=new bool[n];
  115. for(i=0;i<n;i++)
  116. visited[i]=false;
  117. for(i=0;i<n;i++)
  118. {
  119. if(visited[i]==false)
  120. {
  121. BFS(i,visited);
  122. }
  123. }
  124. cout<<endl;
  125. delete []visited;
  126. }
  127. template<class T>
  128. void MGraph<T>::BFS(int v,bool *visited)
  129. {
  130. queue<int> Q;
  131. visited[v]=true;
  132. Q.push(v);
  133. while(!Q.empty())
  134. {
  135. v=Q.front();
  136. Q.pop();
  137. cout<<v<<" ";
  138. for(int i=0;i<n;i++)
  139. {
  140. if(visited[i]==false&&a[v][i]!=INF)
  141. {
  142. visited[i]=true;
  143. Q.push(i);
  144. }
  145. }
  146. }
  147. }
  148. template <class T>
  149. void MGraph<T>::prim(int k,int *nearest,T* lowcost)
  150. {
  151. bool *mark=new bool[n];
  152. if(k<0||k>n-1)
  153. {
  154. printf("out of bounds\n");
  155. return;
  156. }
  157. for(int i=0;i<n;i++)
  158. {
  159. nearest[i]=-1;
  160. lowcost[i]=INF;
  161. mark[i]=false;
  162. }
  163. lowcost[k]=0;
  164. nearest[k]=k;
  165. mark[k]=true;
  166. int cnt=n-1;
  167. while(cnt--)
  168. {
  169. for(int i=0;i<n;i++)
  170. {
  171. if(a[k][i]!=INF)
  172. {
  173. if((!mark[i])&&(lowcost[i]>a[k][i]))
  174. {
  175. lowcost[i]=a[k][i];
  176. nearest[i]=k;
  177. }
  178. }
  179. }
  180. T minn=INF;
  181. for(int j=0;j<n;j++)
  182. {
  183. if((!mark[j])&&(lowcost[j]<minn))
  184. {
  185. minn=lowcost[j];
  186. k=j;
  187. }
  188. }
  189. mark[k]=true;
  190. }
  191. }
  192. template<class T>
  193. int MGraph<T>::Choose(int *d,bool *s)
  194. {
  195. int i,minpos;
  196. T min;
  197. min=INF;
  198. minpos=-1;
  199. for(i=0;i<n;i++)
  200. {
  201. if(d[i]<=min&&!s[i])
  202. {
  203. min=d[i];
  204. minpos=i;
  205. }
  206. }
  207. return minpos;
  208. }
  209. template<class T>
  210. void MGraph<T>::Dijkstra(int v,T *d,int *path)
  211. {
  212. int i,k,w;
  213. if(v<0||v>n-1)
  214. {
  215. cout<<"out of bounds!"<<endl;
  216. return;
  217. }
  218. bool *s=new bool[n];
  219. for(i=0;i<n;i++)
  220. {
  221. s[i]=false;
  222. d[i]=a[v][i];
  223. if(i!=v&&d[i]<INF)
  224. path[i]=v;
  225. else path[i]=-1;
  226. }
  227. s[v]=true;
  228. d[v]=0;
  229. for(i=1;i<n;i++)
  230. {
  231. printf("\n%d:d[]\n",i);
  232. for(int k=0;k<n;k++)
  233. {
  234. printf("%d ",d[k]);
  235. }
  236. printf("\npath\n");
  237. for(int k=0;k<n;k++)
  238. {
  239. printf("%d ",path[k]);
  240. }
  241. k=Choose(d,s);
  242. s[k]=true;
  243. for(w=0;w<n;w++)
  244. {
  245. if(!s[w]&&d[k]+a[k][w]<d[w])
  246. {
  247. d[w]=d[k]+a[k][w];
  248. path[w]=k;
  249. }
  250. }
  251. }
  252. }
  253. template<class T>
  254. void MGraph<T>::Floyd(int d[][Size],int path[][Size])
  255. {
  256. int i,j,k;
  257. for(int i=0;i<n;i++)
  258. {
  259. for(int j=0;j<n;j++)
  260. {
  261. d[i][j]=a[i][j];
  262. if(i!=j&&a[i][j]<INF)
  263. {
  264. path[i][j]=i;
  265. }
  266. else
  267. {
  268. path[i][j]=-1;
  269. }
  270. }
  271. }
  272. printf("初始d和path的值:\n");
  273. printf("数组d:\n");
  274. for(int i=0;i<n;i++)
  275. {
  276. for(int j=0;j<n;j++)
  277. {
  278. if(d[i][j]==INF)
  279. {
  280. printf(" INF");
  281. }
  282. else
  283. {
  284. printf("%5d",d[i][j]);
  285. }
  286. }
  287. printf("\n");
  288. }
  289. printf("数组path:\n");
  290. for(int i=0;i<n;i++)
  291. {
  292. for(int j=0;j<n;j++)
  293. {
  294. printf("%d ",path[i][j]);
  295. }
  296. printf("\n");
  297. }
  298. for(k=0;k<n;k++)
  299. {
  300. for(i=0;i<n;i++)
  301. {
  302. for(j=0;j<n;j++)
  303. {
  304. if(d[i][k]+d[k][j]<d[i][j])
  305. {
  306. d[i][j]=d[i][k]+d[k][j];
  307. path[i][j]=path[k][j];
  308. }
  309. }
  310. }
  311. printf("k= %d \n",k);
  312. printf("数组d:\n");
  313. for(int i=0;i<n;i++)
  314. {
  315. for(int j=0;j<n;j++)
  316. {
  317. if(d[i][j]==INF)
  318. {
  319. printf(" INF");
  320. }
  321. else
  322. {
  323. printf("%5d",d[i][j]);
  324. }
  325. }
  326. printf("\n");
  327. }
  328. printf("数组path:\n");
  329. for(int i=0;i<n;i++)
  330. {
  331. for(int j=0;j<n;j++)
  332. {
  333. printf("%5d",path[i][j]);
  334. }
  335. printf("\n");
  336. }
  337. }
  338. }
  339. int main()
  340. {
  341. int i,j;
  342. int n;
  343. printf("请输入图的顶点数\n");
  344. scanf("%d",&n);
  345. printf("图的顶点为 0 ~ %d\n",n-1);
  346. MGraph<int> M(n);
  347. printf("图是无向图还是有向图? 1.无向图 2.有向图 \n");
  348. int choice;
  349. scanf("%d",&choice);
  350. if(choice!=1&&choice!=2)
  351. {
  352. printf("输入有误\n");
  353. return 0;
  354. }
  355. if(choice==1)
  356. {
  357. printf("请输入无向边的个数:\n");
  358. }
  359. else
  360. {
  361. printf("请输入有向边的个数:\n");
  362. }
  363. int m;
  364. scanf("%d",&m);
  365. printf("请输入 %d 条边\n",m);
  366. int x,y,w;
  367. if(choice==1)
  368. {
  369. for(i=0;i<m;i++)
  370. {
  371. scanf("%d%d%d",&x,&y,&w);
  372. M.Insert(x,y,w);
  373. M.Insert(y,x,w);
  374. }
  375. }
  376. else
  377. {
  378. for(i=0;i<m;i++)
  379. {
  380. scanf("%d%d%d",&x,&y,&w);
  381. M.Insert(x,y,w);
  382. }
  383. }
  384. printf("\n深度优先遍历为:\n");
  385. M.DFS();
  386. printf("宽度优先遍历为:\n");
  387. M.BFS();
  388. printf("Prim 算法测试\n");
  389. int nearest[Size];
  390. int lowcost[Size];
  391. int flag=0;
  392. M.prim(0,nearest,lowcost);
  393. for(i=0;i<n;i++)
  394. {
  395. if(lowcost[i]==INF)
  396. {
  397. flag=1;
  398. }
  399. }
  400. if(flag==0)
  401. {
  402. printf("最小生成树边集为:\n");
  403. for(i=0;i<n;i++)
  404. {
  405. printf("(%d,%d,%d) ",nearest[i],i,lowcost[i]);
  406. }
  407. printf("\n\n");
  408. }
  409. else
  410. {
  411. printf("这个图不是一个连通图:\n");
  412. }
  413. int d[Size];
  414. int path[Size];
  415. int v,s;
  416. printf("\nDijkstra单源最短路测试\n请输入起点和终点坐标:\n");
  417. scanf("%d%d",&v,&s);
  418. M.Dijkstra(v,d,path);
  419. int record[Size];
  420. if(d[s]==INF)
  421. {
  422. printf("无法从 %d 到达 %d\n",v,s);
  423. }
  424. else
  425. {
  426. printf("最短路径长度是 %d \n",d[s]);
  427. i=s,j=1;
  428. record[0]=s;
  429. while(path[i]!=v)
  430. {
  431. record[j++]=path[i];
  432. i=path[i];
  433. }
  434. record[j++]=v;
  435. reverse(record,record+j);
  436. printf("路径为:\n");
  437. for(i=0;i<j;i++)
  438. {
  439. if(i==0) printf("%d",record[i]);
  440. else printf(" ->%d",record[i]);
  441. }
  442. printf("\n\n");
  443. }
  444. printf("Floyd 任意两点之间的最短路 算法测试\n");
  445. int dd[Size][Size];
  446. int ppath[Size][Size];
  447. M.Floyd(dd,ppath);
  448. printf("请输入 起点和终点 ,输入 0 0 停止:\n");
  449. while(scanf("%d%d",&v,&s)==2)
  450. {
  451. if(v==0&&s==0) break;
  452. if(dd[v][s]==INF)
  453. {
  454. printf("无法从 %d 到达 %d \n",v,s);
  455. }
  456. else
  457. {
  458. printf("最短路长度是: %d \n",dd[v][s]);
  459. memset(record,0,sizeof(record));
  460. j=0;
  461. while(s!=v)
  462. {
  463. record[j++]=s;
  464. s=ppath[v][s];
  465. }
  466. record[j++]=s;
  467. reverse(record,record+j);
  468. printf("路径为:\n");
  469. for(i=0;i<j;i++)
  470. {
  471. if(i==0) printf("%d",record[i]);
  472. else printf("->%d",record[i]);
  473. }
  474. }
  475. printf("\nFloyd 请输入 起点和终点 ,输入 0 0 停止:\n");
  476. }
  477. return 0;
  478. }

程序二:邻接表表示的图的基本运算


  1. #include <iostream>
  2. #include <vector>
  3. #include <cstdio>
  4. #include <algorithm>
  5. #include <cstring>
  6. #include <string>
  7. #include <cstdio>
  8. #include <queue>
  9. #define INF 1e8
  10. #define Size 200
  11. using namespace std;
  12. struct edge //边的结构体
  13. {
  14. int to;
  15. int cost;
  16. edge(int x,int y)
  17. {
  18. to=x;
  19. cost=y;
  20. }
  21. };
  22. template<class T>
  23. class LGraph
  24. {
  25. private:
  26. vector<edge> *M;
  27. int n;
  28. int e;
  29. void DFS(int u,bool *vis);
  30. void BFS(int v,bool *vis);
  31. public:
  32. LGraph(int mSize);
  33. ~LGraph();
  34. bool Insert(int u,int v,int w);
  35. bool Exist(int u,int v);
  36. bool Remove(int u,int v);
  37. void Dijkstra(int v,T *d,int *path);
  38. void prim(int k,int *nearest,T* lowcost);
  39. void Floyd(int d[][Size],int path[][Size]);
  40. void DFS();
  41. void BFS();
  42. };
  43. template<class T>
  44. LGraph<T>::LGraph(int mSize)
  45. {
  46. M=new vector<edge>[mSize];
  47. n=mSize;
  48. e=0;
  49. }
  50. template<class T>
  51. LGraph<T>::~LGraph()
  52. {
  53. int i;
  54. for(i=0;i<n;i++)
  55. {
  56. M[i].clear();
  57. }
  58. delete []M;
  59. }
  60. template<class T>
  61. bool LGraph<T>::Insert(int u,int v,int w)
  62. {
  63. int i;
  64. if(u<0||u<0||v>n-1||u>n-1) return false;
  65. for(i=0;i<M[u].size();i++)
  66. {
  67. if(M[u][i].to==v)
  68. {
  69. return false;
  70. }
  71. }
  72. edge tmp(v,w);
  73. M[u].push_back(tmp);
  74. e++;
  75. return true;
  76. }
  77. template<class T>
  78. bool LGraph<T>::Exist(int u,int v)
  79. {
  80. int i;
  81. if(u<0||v<0||u>n-1||v>n-1) return false;
  82. for(i=0;i<M[u].size();i++)
  83. {
  84. if(M[u][i].to==v)
  85. {
  86. return true;
  87. }
  88. }
  89. return false;
  90. }
  91. template<class T>
  92. bool LGraph<T>::Remove(int u,int v)
  93. {
  94. int i;
  95. if(u<0||v<0||u>n-1||v>n-1) return false;
  96. for(i=0;i<M[u].size();i++)
  97. {
  98. if(M[u][i].to==v)
  99. {
  100. M[u].erase(M[u].begin()+i);
  101. return true;
  102. }
  103. }
  104. return false;
  105. }
  106. int cmp(edge a,edge b)
  107. {
  108. return a.to<b.to;
  109. }
  110. template<class T>
  111. void LGraph<T>::DFS()
  112. {
  113. for(int i=0;i<n;i++)
  114. {
  115. sort(M[i].begin(),M[i].end(),cmp);
  116. }
  117. int i;
  118. bool *vis=new bool[n+1];
  119. for(i=0;i<n;i++)
  120. {
  121. vis[i]=false;
  122. }
  123. for(i=0;i<n;i++)
  124. {
  125. if(vis[i]==false)
  126. {
  127. DFS(i,vis);
  128. }
  129. }
  130. delete []vis;
  131. cout<<endl;
  132. }
  133. template<class T>
  134. void LGraph<T>::DFS(int v,bool *vis)
  135. {
  136. vis[v]=true;
  137. printf("%d ",v);
  138. int i;
  139. for(i=0;i<M[v].size();i++)
  140. {
  141. int t=M[v][i].to;
  142. if(vis[t]==false)
  143. {
  144. DFS(t,vis);
  145. }
  146. }
  147. }
  148. template<class T>
  149. void LGraph<T>::BFS()
  150. {
  151. int i;
  152. bool *vi=new bool[n];
  153. for(i=0;i<n;i++)
  154. {
  155. vi[i]=false;
  156. }
  157. for(i=0;i<n;i++)
  158. {
  159. if(vi[i]==false)
  160. {
  161. BFS(i,vi);
  162. }
  163. }
  164. cout<<endl;
  165. delete []vi;
  166. }
  167. template<class T>
  168. void LGraph<T>::BFS(int v,bool *vi)
  169. {
  170. int i;
  171. vi[v]=true;
  172. queue<int> Q;
  173. Q.push(v);
  174. while(!Q.empty())
  175. {
  176. v=Q.front();
  177. printf("%d ",v);
  178. Q.pop();
  179. for(i=0;i<M[v].size();i++)
  180. {
  181. int t=M[v][i].to;
  182. if(vi[t]==false)
  183. {
  184. Q.push(t);
  185. vi[t]=true;
  186. }
  187. }
  188. }
  189. }
  190. template<class T>
  191. void LGraph<T>::Dijkstra(int v,T *d,int *path)
  192. {
  193. int i;
  194. bool *s=new bool[n];
  195. for(i=0;i<n;i++)
  196. {
  197. d[i]=INF;
  198. path[i]=-1;
  199. s[i]=false;
  200. }
  201. for(i=0;i<M[v].size();i++)
  202. {
  203. int t=M[v][i].to;
  204. d[t]=M[v][i].cost;
  205. path[t]=v;
  206. }
  207. s[v]=true;
  208. d[v]=0;
  209. for(i=1;i<n;i++)
  210. {
  211. int index=-1;
  212. int min=INF;
  213. for(int j=0;j<n;j++)
  214. {
  215. if(s[j]==false && d[j]<=min)
  216. {
  217. min=d[j];
  218. index=j;
  219. }
  220. }
  221. s[index]=true;
  222. for(int k=0;k<M[index].size();k++)
  223. {
  224. int t=M[index][k].to;
  225. if(d[index]+M[index][k].cost<d[t]&&s[t]==false)
  226. {
  227. d[t]=d[index]+M[index][k].cost;
  228. path[t]=index;
  229. }
  230. }
  231. }
  232. delete []s;
  233. }
  234. template<class T>
  235. void LGraph<T>::prim(int k,int *nearest,T* lowcost)
  236. {
  237. bool *mark=new bool[n+1];
  238. for(int i=0;i<n;i++)
  239. {
  240. nearest[i]=-1;
  241. mark[i]=false;
  242. lowcost[i]=INF;
  243. }
  244. mark[k]=true;
  245. lowcost[k]=0;
  246. nearest[k]=k;
  247. for(int i=1;i<n;i++)
  248. {
  249. for(int j=0;j<M[k].size();j++)
  250. {
  251. int t=M[k][j].to;
  252. if(lowcost[t]>M[k][j].cost&&!(mark[t]))
  253. {
  254. lowcost[t]=M[k][j].cost;
  255. nearest[t]=k;
  256. }
  257. }
  258. int min=INF;
  259. for(int j=0;j<n;j++)
  260. {
  261. if(!mark[j] && lowcost[j]<min)
  262. {
  263. min=lowcost[j];
  264. k=j;
  265. }
  266. }
  267. mark[k]=true;
  268. }
  269. delete []mark;
  270. }
  271. template <class T>
  272. void LGraph<T>::Floyd(int d[Size][Size],int path[Size][Size])
  273. {
  274. for(int i=0;i<Size;i++)
  275. {
  276. for(int j=0;j<Size;j++)
  277. {
  278. d[i][j]=INF;
  279. path[i][j]=-1;
  280. }
  281. }
  282. for(int i=0;i<n;i++)
  283. {
  284. for(int j=0;j<M[i].size();j++)
  285. {
  286. int t=M[i][j].to;
  287. d[i][t]=M[i][j].cost;
  288. path[i][t]=i;
  289. }
  290. }
  291. for(int k=0;k<n;k++)
  292. {
  293. for(int i=0;i<n;i++)
  294. {
  295. for(int j=0;j<n;j++)
  296. {
  297. if(d[i][k]+d[k][j]<d[i][j])
  298. {
  299. d[i][j]=d[i][k]+d[k][j];
  300. path[i][j]=path[k][j];
  301. }
  302. }
  303. }
  304. }
  305. }
  306. int main()
  307. {
  308. int n;
  309. printf("请输入顶点数:\n");
  310. scanf("%d",&n);
  311. LGraph<int> G(n);
  312. printf("请输入构建有向图还是无向图? 1.无向图 2.有向图\n");
  313. int choice;
  314. cin>>choice;
  315. if(choice!=1&&choice!=2)
  316. {
  317. printf("输入有误,请重新输入\n");
  318. return 0;
  319. }
  320. else if(choice==2)
  321. {
  322. printf("请输入有向边的个数\n",n);
  323. int m;
  324. cin>>m;
  325. printf("请输入%d条有向边\n",n);
  326. for(int i=0;i<m;i++)
  327. {
  328. int x,y,z;
  329. cin>>x>>y>>z;
  330. G.Insert(x,y,z);
  331. }
  332. }
  333. else
  334. {
  335. printf("请输入无向边的个数\n");
  336. int m;
  337. cin>>m;
  338. printf("请输入 %d 条无向边\n");
  339. for(int i=0;i<m;i++)
  340. {
  341. int x,y,z;
  342. cin>>x>>y>>z;
  343. G.Insert(x,y,z);
  344. G.Insert(y,x,z);
  345. }
  346. }
  347. printf("深度优先遍历:\n");
  348. G.DFS();
  349. printf("宽度优先遍历:\n");
  350. G.BFS();
  351. int *lowcost=new int[n+1];
  352. int *nearest=new int[n+1];
  353. G.prim(0,nearest,lowcost);
  354. printf("prim 最小生成树测试 :\n");
  355. int flag=0;
  356. for(int i=0;i<n;i++)
  357. {
  358. if(lowcost[i]==INF)
  359. {
  360. flag=1;
  361. }
  362. }
  363. if(flag==0)
  364. {
  365. for(int i=0;i<n;i++)
  366. {
  367. printf("%d %d %d\n",nearest[i],i,lowcost[i]);
  368. }
  369. }
  370. else
  371. {
  372. printf("这个图不是一个连通图:\n");
  373. }
  374. printf("\n\n");
  375. delete []nearest;
  376. delete []lowcost;
  377. printf("Dijkstra单源最短路测试:\n");
  378. printf("请输入起点和终点:\n");
  379. printf("起点:");
  380. int x;
  381. cin>>x;
  382. printf("终点:");
  383. int y;
  384. cin>>y;
  385. int *path=new int[n+1];
  386. int *d=new int[n+1];
  387. G.Dijkstra(x,d,path);
  388. if(d[y]==INF)
  389. {
  390. printf("没有路能从 %d 到达 %d \n",x,y);
  391. }
  392. else
  393. {
  394. printf("最短路径长度为: %d\n",d[y]);
  395. int *record=new int[n+1];
  396. int j=0;
  397. while(y!=x)
  398. {
  399. record[j++]=y;
  400. y=path[y];
  401. }
  402. record[j++]=x;
  403. reverse(record,record+j);
  404. printf("路径为:\n");
  405. for(int i=0;i<j;i++)
  406. {
  407. if(i==0) printf("%d",record[i]);
  408. else printf("->%d",record[i]);
  409. }
  410. printf("\n\n");
  411. delete []record;
  412. }
  413. delete []d;
  414. delete []path;
  415. int dd[Size][Size];
  416. int ppath[Size][Size];
  417. printf("Floyd 算法所有顶点最短路测试:\n");
  418. G.Floyd(dd,ppath);
  419. printf("\nFloyd 请输入 起点和终点 ,输入 0 0 停止:\n");
  420. int v,s;
  421. while(scanf("%d%d",&v,&s)==2)
  422. {
  423. int record[Size];
  424. if(v==0&&s==0) break;
  425. if(dd[v][s]==INF)
  426. {
  427. printf("无法从 %d 到达 %d \n",v,s);
  428. }
  429. else
  430. {
  431. printf("最短路长度是: %d \n",dd[v][s]);
  432. memset(record,0,sizeof(record));
  433. int j=0;
  434. while(s!=v)
  435. {
  436. record[j++]=s;
  437. s=ppath[v][s];
  438. }
  439. record[j++]=s;
  440. reverse(record,record+j);
  441. printf("路径为:\n");
  442. for(int i=0;i<j;i++)
  443. {
  444. if(i==0) printf("%d",record[i]);
  445. else printf("->%d",record[i]);
  446. }
  447. }
  448. printf("\nFloyd 请输入 起点和终点 ,输入 0 0 停止:\n");
  449. }
  450. return 0;
  451. }

程序三:飞机换乘问题

  1. #include <cstdio>
  2. #include <iostream>
  3. #include <algorithm>
  4. #include <queue>
  5. #include <vector>
  6. #include <string>
  7. #include <cstring>
  8. #define INF 1e8
  9. #define Size 200
  10. using namespace std;
  11. template<class T>
  12. class MGraph
  13. {
  14. public:
  15. MGraph(int mSize);
  16. ~MGraph();
  17. bool Insert(int u,int v);
  18. void Dijkstra(int v,T *d,int *path);
  19. protected:
  20. int Choose(int *d,bool *s);
  21. T **a;
  22. int n,e;
  23. };
  24. template<class T>
  25. MGraph<T>::MGraph(int mSize)
  26. {
  27. n=mSize;e=0;
  28. a=new T*[n];
  29. for(int i=0;i<n;i++)
  30. {
  31. a[i]=new T[n];
  32. for(int j=0;j<n;j++)
  33. {
  34. a[i][j]=INF;
  35. }
  36. a[i][i]=0;
  37. }
  38. }
  39. template<class T>
  40. MGraph<T>::~MGraph()
  41. {
  42. for(int i=0;i<n;i++)
  43. {
  44. delete []a[i];
  45. }
  46. delete []a;
  47. }
  48. template<class T>
  49. bool MGraph<T>::Insert(int u,int v)
  50. {
  51. if(u<0||v<0||u>n-1||v>n-1||u==v ) return false;
  52. if(a[u][v]!=INF) return false;
  53. a[u][v]=1;
  54. e++;
  55. return true;
  56. }
  57. template<class T>
  58. int MGraph<T>::Choose(int *d,bool *s)
  59. {
  60. int i,minpos;
  61. T min;
  62. min=INF;
  63. minpos=-1;
  64. for(i=0;i<n;i++)
  65. {
  66. if(d[i]<=min&&!s[i])
  67. {
  68. min=d[i];
  69. minpos=i;
  70. }
  71. }
  72. return minpos;
  73. }
  74. template<class T>
  75. void MGraph<T>::Dijkstra(int v,T *d,int *path)
  76. {
  77. int i,k,w;
  78. if(v<0||v>n-1)
  79. {
  80. cout<<"out of bounds!"<<endl;
  81. return;
  82. }
  83. bool *s=new bool[n];
  84. for(i=0;i<n;i++)
  85. {
  86. s[i]=false;
  87. d[i]=a[v][i];
  88. if(i!=v&&d[i]<INF)
  89. path[i]=v;
  90. else path[i]=-1;
  91. }
  92. s[v]=true;
  93. d[v]=0;
  94. for(i=1;i<n;i++)
  95. {
  96. k=Choose(d,s);
  97. s[k]=true;
  98. for(w=0;w<n;w++)
  99. {
  100. if(!s[w]&&d[k]+a[k][w]<d[w])
  101. {
  102. d[w]=d[k]+a[k][w];
  103. path[w]=k;
  104. }
  105. }
  106. }
  107. }
  108. int main()
  109. {
  110. int n;
  111. printf("请输入城市个数:");
  112. cin>>n;
  113. MGraph<int> G(n);
  114. int m;
  115. printf("请输入航线个数:");
  116. cin>>m;
  117. printf("请输入m条航线的起点和终点:\n");
  118. for(int i=0;i<m;i++)
  119. {
  120. int x,y;
  121. cin>>x>>y;
  122. G.Insert(x,y);
  123. }
  124. printf("请输入你出发地和目的地:\n");
  125. int x,y;
  126. printf("出发地:");
  127. cin>>x;
  128. printf("目的地:");
  129. cin>>y;
  130. int *d=new int[n];
  131. int *path=new int[n];
  132. G.Dijkstra(x,d,path);
  133. if(d[y]==INF)
  134. {
  135. printf("没有从 %d 到 %d的换成方案\n",x,y);
  136. }
  137. else
  138. {
  139. printf("最少换乘次数为: %d\n",d[y]);
  140. int *record=new int[n+1];
  141. int j=0;
  142. while(y!=x)
  143. {
  144. record[j++]=y;
  145. y=path[y];
  146. }
  147. record[j++]=x;
  148. reverse(record,record+j);
  149. printf("换乘方案为:\n");
  150. for(int i=0;i<j;i++)
  151. {
  152. if(i==0) printf("%d",record[i]);
  153. else printf("->%d",record[i]);
  154. }
  155. printf("\n\n");
  156. delete []record;
  157. }
  158. delete []d;
  159. delete []path;
  160. return 0;
  161. }


本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号