程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 六講貫通C++圖的應用之五 最短路徑(1)

六講貫通C++圖的應用之五 最短路徑(1)

編輯:C++入門知識

筆者從基本儲存方法DFS和BFS無向圖最小生成樹最短路徑以及活動網絡(AOV、AOE)六個方面詳細介紹C++圖的應用。之前我們已經介紹過了基本儲存方法、DFS和BFS、無向圖以及最小生成樹,今天我們介紹最短路徑

最短路徑

最短路徑恐怕是圖的各種算法中最能吸引初學者眼球的了——在地圖上找一條最短的路或許每個人都曾經嘗試過。下面我們用計算機來完成我們曾經的“願望”。

在圖的算法中有個有趣的現象,就是問題的規模越大,算法就越簡單。圖是個復雜的結構,對於一個特定問題,求解特定頂點的結果都會受到其他頂點的影響——就好比一堆互相碰撞的球體,要求解特定球體的狀態,就必須考慮其他球體的狀態。既然每個頂點都要掃描,如果對所有的頂點都求解,那麼算法就非常的簡單——無非是遍歷嗎。然而,當我們降低問題規模,那很自然的,我們希望算法的規模也降低——如果不降低,不是殺雞用牛刀?但是,正是由於圖的復雜性,使得這種降低不容易達到,因此,為了降低算法的規模,使得算法就復雜了。

在下面的介紹中,清楚了印證了上面的結論。人的認知過程是從簡單到復雜,雖然表面看上去,求每對頂點之間的最短路徑要比特定頂點到其他頂點之間的最短路徑復雜,但是,就像上面說的,本質上,前者更為簡單。下面的介紹沒有考慮歷史因素(就是指哪個算法先提出來),也沒有考慮算法提出者的真實想法(究竟是誰參考了或是沒參考誰),只是從算法本身之間的聯系來做一個闡述,如有疏漏,敬請原諒。

准備工作

一路走下來,圖類已經很“臃腫”了,為了更清晰的說明問題,需要“重起爐灶另開張”,同時也是為了使算法和儲存方法分開,以便於復用。

首先要為基本圖類添加幾個接口。

  1. template <class name, class dist, class mem>  
  2. class Network  
  3. {  
  4. public:  
  5. int find(const name& v) { int n; if (!data.find(v, n)) return -1; return n; }  
  6. dist& getE(int m, int n) { return data.getE(m, n); }  
  7. const dist& NoEdge() { return data.NoEdge; }  
  8. };  
  9. template <class name, class dist>  
  10. class AdjMatrix  
  11. {  
  12. public:  
  13. dist& getE(int m, int n) { return edge[m][n]; }  
  14. };  
  15. template <class name, class dist>  
  16. class Link  
  17. {  
  18. public:  
  19. dist& getE(int m, int n)  
  20. {  
  21. for (list::iterator iter = vertices[m].e->begin();  
  22. iter != vertices[m].e->end() && iter->vID < n; iter++);  
  23. if (iter == vertices[m].e->end()) return NoEdge;  
  24. if (iter->vID == n) return iter->cost;  
  25. return NoEdge;  
  26. }  
  27. }; 

然後就是為了最短路徑算法“量身定做”的“算法類”。求某個圖的最短路徑時,將圖綁定到算法上,例如這樣:

  1. Network<char, int, Link<char, int> > a(100);  
  2. //插入點、邊……  
  3. Weight<char, int, Link<char, int> > b(&a);  
  4.  
  5. #include "Network.h"  
  6. template <class name, class dist, class mem>  
  7. class Weight  
  8. {  
  9. public:  
  10. Weight(Network* G) : G(G), all(false), N(G->vNum())  
  11. {  
  12. length = new dist*[N]; path = new int*[N];  
  13. shortest = new bool[N]; int i, j;  
  14. for (i = 0; i < N; i++)  
  15. {  
  16. length[i] = new dist[N]; path[i] = new int[N];  
  17. }  
  18. for (i = 0; i < N; i++)  
  19. {  
  20. shortest[i] = false;  
  21. for (j = 0; j < N; j++)  
  22. {  
  23. length[i][j] = G->getE(i, j);  
  24. if (length[i][j] != G->NoEdge()) path[i][j] = i;  
  25. else path[i][j] = -1;  
  26. }  
  27. }  
  28. }  
  29. ~Weight()  
  30. {  
  31. for (int i = 0; i < N; i++) { delete []length[i]; delete []path[i]; }  
  32. delete []length; delete []path; delete []shortest;  
  33. }  
  34. private:  
  35. void print(int i, int j)  
  36. {  
  37. if (path[i][j] == -1) cout << "No Path" << endl; return;  
  38. cout << "Shortest Path: "; out(i, j); cout << G->getV(j) << endl;  
  39. cout << "Path Length: " << length[i][j] << endl;  
  40. }  
  41. void out(int i, int j)  
  42. {  
  43. if (path[i][j] != i) out(i, path[i][j]);  
  44. cout << G->getV(path[i][j]) << "->";  
  45. }  
  46. dist** length; int** path; bool* shortest; bool all; int N;  
  47. Network* G;  
  48. }; 

發現有了構造函數真好,算法的結果數組的初始化和算法本身分開了,這樣一來,算法的基本步驟就很容易看清楚了。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved