弗洛伊德算法求每一對頂點之間的最短路徑

#include <stdio.h> #define VERTEX_NUM 3 #define INFINITY 10000 #define TRUE 1 #define FALSE 0 typedef   struct  Graph {      char  vexs[VERTEX_NUM];   /*頂點*/      int  arcs[VERTEX_NUM][VERTEX_NUM];   
相關文章
相關標籤/搜索