摘要: #include<stdio.h>//floyd算法实现//定义一个无限大值,表示无法直接通过的两个点#define INF 999//初始化一个n*n的数组存储所要表示的图 #define N 3 int a [N][N] ;//creat函数,用于初始化数组int* creat (){ for( 阅读全文
posted @ 2019-10-16 11:23 Insertt 阅读(301) 评论(0) 推荐(0)