/*
* 檔名稱:prim.cbp
* 作 者:李涵睿
* 完成日期:2023年11月23日
* 版 本 號:v1.0
* 問題描述:prim演算法的驗證。
* 輸入描述:無
* 程式輸出:測試資料
*/
標頭檔案和原始檔見【圖的演算法庫】
#include #include #include #include "graph.h"
using namespace std;
void prim(mgraph g,int v)
{ int lowcost[maxv]; //頂點i是否在u中
int min;
int closest[maxv],i,j,k;
for (i=0; i執行結果:
知識點總結&學習心得:
搞明白lowcost和closet,將一步步的實現過程畫出來。
第十三周專案1 prim演算法
檔名稱 專案1.cbp 作 者 孫欽達 完成日期 2015年12月4日 版 本 號 v1.0 問題描述 prim演算法 輸入描述 無 程式輸出 最小生成樹 ifndef graph h included define graph h included define maxv 100 最大頂點個數 d...
第十三周專案1 prim演算法
檔名稱 專案5.cbp 作 者 臧曉彤 完成日期 2015年12月18日 版 本 號 v1.0 問題描述 prim演算法 輸入描述 無 程式輸出 最小生成樹 ifndef graph h included define graph h included define maxv 100 最大頂點個數 ...
第十三周專案1Prim 演算法驗證
問題及描述 1 prim演算法 graph.h ifndef graph h included define graph h included define maxv 100 最大頂點個數 define inf 32767 inf表示 typedef int infotype 以下定義鄰接矩陣型別 ...