Kruscal algorithm
摘要:
#include #include using namespace std; #define MAX 5 #define INF 32765 int graph[MAX][MAX]= {{INF ,1,INF,4,3}, {1,INF,2,INF,INF}, {INF,1,INF,2,3}, {4,INF,2,INF,1}, {3,INF,3,1,INF}}; typedef struct... 阅读全文
posted @ 2017-04-25 15:56 ewitt 阅读(172) 评论(0) 推荐(0)
浙公网安备 33010602011771号