资源简介
西电软院算法上机3的原题以及python代码实现
代码片段和文件信息
#!/usr/bin/python
# coding=utf-8
INF = float(“inf“)
def printSolution(distGraph):
string = “inf“
nodes = distGraph.keys()
for n in nodes:
print “\t%6s“%(n)
print “ “
for i in nodes:
print“%s“%(i)
for j in nodes:
if distGraph[i][j] == INF:
print “%10s“%(string)
else:
print “%10s“%(distGraph[i][j])
print “ “
def floydWarshall(graph):
nodes = graph.keys()
distance = {}
for n in nodes:
distance[n] = {}
for k in nodes:
distance[n][k] = graph[n][k]
for k in nodes:
for i in nodes:
for j in nodes:
if distance[i][k] + distance[k][j] < distance[i][j]:
distance[i][j] = distance[i][k]+distan
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-05-09 23:25 3\
文件 162 2016-05-09 23:17 3\.~actice 3.doc
文件 1202 2016-05-09 18:00 3\floyd_sortest.py
文件 3262 2016-05-09 23:05 3\knapsack.py
文件 745 2016-05-09 01:55 3\ms_shortest.py
文件 315 2016-05-09 23:13 3\scheduling.py
文件 1289 2016-05-09 17:56 3\ss_shortest.py
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- python turtle 跳房子
- python 人群计数
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
- 我的世界python编程——天空行走py格式
评论
共有 条评论