博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
floyd算法【图论 - 最短路径】
阅读量:5929 次
发布时间:2019-06-19

本文共 597 字,大约阅读时间需要 1 分钟。

floyd大神发明的算法?

挺难理解的。

源代码

#include 
#include
using namespace std;#define INF 0x3f3f3f3fint dist[105][105];int n;void Floyd(){ for(int k=1; k<=n; k++) for(int i=1; i<=n; i++) for(int j=1; j<=n; j++) if(dist[i][k] + dist[k][j] < dist[i][j]) dist[i][j] = dist[i][k]+dist[k][j];}int main(){ int m, x, y, z; while(~scanf("%d%d",&n, &m)) { memset(dist, INF, sizeof dist); for(int i=0; i<=n; i++) dist[i][i] = 0; for(int i=0; i

转载于:https://www.cnblogs.com/shengwang/p/9738911.html

你可能感兴趣的文章
get和post区别
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
Floodlight 在 ChannelPipeline 图
查看>>
做移动互联网App,你的测试用例足够吗?
查看>>
cmd.exe启动参数说明
查看>>
《随笔记录》20170310
查看>>
网站分析系统
查看>>
一站式解决,Android 拍照 图库的各种问题
查看>>
lsof命令
查看>>
阿里云云计算ACP考试知识点(标红为重点)
查看>>
从零开始来看一下Java泛型的设计
查看>>
嵌入式WiFi芯片价格战已经打响 MCU企业该醒悟了
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>
3.1
查看>>
校验表单如何摆脱 if else ?
查看>>
跨运营商组播传送案例(multicast-proxy-register应用)
查看>>
JTable的DefaultModel方法getValueAt(a,row)
查看>>
Good Bye 2013 A
查看>>
Automatic Sql Server Backup Utility Using sqlserveragent
查看>>