prim演算法 求最小生成樹 1075

2021-07-30 23:52:18 字數 1168 閱讀 2721

生成樹

貪心求出給定無向帶權圖的最小生成樹。圖的定點為字元型,權值為不超過100的整形。在提示中已經給出了部分**,你只需要完善prim演算法即可。

description

第一行為圖的頂點個數n

第二行為圖的邊的條數e

接著e行為依附於一條邊的兩個頂點和邊上的權值

input

最小生成樹中的邊。

output

1

2

3

4

5

6

7

8

9

10

11

12

13 6

10

abcdef

a b 6

a c 1

a d 5

b c 5

c d 5

b e 3

e c 6

c f 4

f d 2

e f 6

sample input

1(a,c)(c,f)(f,d)(c,b)(b,e)

#include#include#include#include#include#include#includeusing namespace std;

#define mem(x,y) memset(x,y,sizeof(x))

int maps[105][105];

char dian[1000];

void pri(int n, int e)

for (int i = 1; i < n; i++)

}cout << '(' << dian[close[k]] << ',' << dian[k] << ')';

disx[k] = 0;

for (int j = 0; j < n; j++)

} }}

int main()

} for (int i = 0; i < e; i++)

pri(n, e);

} return 0;

}

//by tp

Prim演算法求最小生成樹

本文參考 google 資料結構 c語言 prim演算法,求最小生成樹 include include 最小生成樹prim define max 65535 using namespace std struct graph int prim graph g flag 0 1 將0號結點加入集合s i...

Prim演算法求最小生成樹

cost i j 存i和j之間的距離,vis i 記錄i點是否被訪問,lowc j 存所有與j點連線的邊的最小的權值。每次找最小的lowc j 然後。最小生成樹 int prim int cost maxn int n 點是0 n 1 if minc inf return 1 原圖不連通 ans m...

Prim演算法求最小生成樹

樸素prim演算法 1 距離初始化成正無窮 2 n次迭代 找到集合外距離最近的點,賦值給t 3 用t更新其他點到集合的距離 跟狄傑斯塔拉不一樣,狄傑斯塔拉是跟原點的距離 點與集合所有點距離最短的點 st t true 給定乙個n個點m條邊的無向圖,圖中可能存在重邊和自環,邊權可能為負數。求最小生成樹...