贪心算法求最短路径问题讲解
#include <iostream.h>#include <limits>const int size=5;//返回最短路径的长度//edge[size][size],输入参数图信息//nstart
贪心算法求最短路径问题讲解