python运行不了程序_Python不会运行程序

我对python不熟悉,但有C和Matlab的大学经验。我试图编写并运行dijkstras算法,但是当我运行它时,什么也没有发生。我会附上代码(包括注释掉失败的尝试),希望有人能引导我朝正确的方向前进。在#must write script to turn matrix into this form of graph

graph = {'a':{'c':3,'e':5},'c':{'a':3,'d':5},'d':{'c':3,'e':6},'e':

{'d':6,'a':5}}

unseenNodes = {}

goal = {}

start = {}

#defining function

def dijkstra(graph, start, goal):

shortest_distance = {} #empty dictionary

predeccesor = {} #empty dictionary

unseenNodes = graph #makes it run through til all are seen

path = []

def __init__(self):

#start node to next node

print( str("hi"))

for node in unseenNodes:

shortest_distance[node]=9999999

shortest_distance[start]=0

print(shortest_distance)

#beefy bit of dijkstras alogrithim

while unseenNodes:

minNode=None

for node in unseenNodes:

if minNode is None:

minNode = node

elif shortest_distance[node] < shortest_distance[minNode]:

minNode = node

for childNode, weight in graph [minNode].items():

if weight + shortest_distance[minNode] <

shortest_distance[childNode]:

shortest_distance[childNode] = weight + shortest_distance[minNode]

predeccesor[childNode] = minNode

unseenNodes.pop(minNode)

print(shortest_distance)

#reverse stack approach to trace path

currentNode = goal

while currentNode != start:

try:

path.insert(0,currentNode)

currentNode = predeccesor[currentNode]

except KeyError:

print('path not valid')

#break

path.insert(0,start)

if shortest_distance[goal] != infinity:

#print(goal)

print('shortest distance is' + str(shortest_distance[goal]))

print('path is' + str(path))

else:

Print('Something Went Wrong!')

#break

dijkstra(graph, 'a', 'd')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值