摘要:
#include <stdio.h>#include <stdlib.h>/* Floyd算法 */#define VNUM 5#define MV 65536int P[VNUM][VNUM];int A[VNUM][VNUM];int Matrix[VNUM][VNUM] ={ {0, 10, 阅读全文
摘要:
#include <stdio.h>#include <stdlib.h>/* Dijkstra算法 */#define VNUM 5#define MV 65536int P[VNUM]; //保存最短路径int Dist[VNUM];int Mark[VNUM];int Matrix[VNUM] 阅读全文
摘要:
#include <stdio.h>#include <stdlib.h>/* 最小路径算法 --》prim算法 */#define VNUM 9#define MV 65536int P[VNUM];int Cost[VNUM];int Mark[VNUM]; //标记数组int Matrix[V 阅读全文