温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

python中怎么实现一个Dijkstra算法

发布时间:2021-07-10 11:39:41 来源:亿速云 阅读:327 作者:Leah 栏目:大数据

python中怎么实现一个Dijkstra算法,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。


"""

Dijkstra algorithm

graphdict={"A":[("B",6),("C",3)], "B":[("C",2),("D",5)],"C":[("B",2),("D",3),("E",4)],\

         "D":[("B",5),("C",3),("E",2),("F",3)],"E":[("C",4),("D",2),("F",5)],"F":[("D",3),"(E",5)]})

assert: start node must be zero in-degree

"""


def Dijkstra(startNode, endNode, graphdict=None):

    S=[startNode]

    V=[]

    for node in graphdict.keys():

        if node !=startNode:

            V.append(node)

    #distance dict from startNode

    dist={}

    for node in V:

        dist[node]=float('Inf')


    while len(V)>0:

        center = S[-1] # get final node for S as the new center node

        minval = ("None",float("Inf"))

        for node,d in graphdict[center]:

            if node not in V:

                continue

            #following is the key logic.If S length is bigger than 1,need to get the final ele of S, which is the center point in current

            #iterator, and distance between start node and center node is startToCenterDist; d is distance between node

            # among out-degree for center point; dist[node] is previous distance to start node, possibly Inf or a updated value

            # so if startToCenterDist+d is less than dist[node], then it shows we find a shorter distance.

            if len(S)==1:

                dist[node] = d

            else:

                startToCenterDist = dist[center]

                if startToCenterDist + d < dist[node]:

                    dist[node] = startToCenterDist + d

            #this is the method to find a new center node and

            # it's the minimum distance among out-degree nodes for center node

            if d < minval[1]:

                minval = (node,d)

        V.remove(minval[0])

        S.append(minval[0]) # append node with min val

    return dist


03

测试

python中怎么实现一个Dijkstra算法

求出以上图中,从A到各个节点的最短路径:

shortestRoad = Dijkstra("A","F",graphdict={"A":[("B",6),("C",3)], "B":[("C",2),("D",5)],\

                            "C":[("B",2),("D",3),("E",4)],\

                            "D":[("B",5),("C",3),("E",2),("F",3)],\

                            "E":[("C",4),("D",2),("F",5)],"F":[("D",3),("E",5)]})

mystr = "shortest distance from A begins to "

for key,shortest in shortestRoad.items():

    print(mystr+ str(key) +" is: " + str(shortest) )

打印结果如下:

shortest distance from A begins to B is: 5

shortest distance from A begins to C is: 3

shortest distance from A begins to D is: 6

shortest distance from A begins to E is: 7

shortest distance from A begins to F is: 9

关于python中怎么实现一个Dijkstra算法问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI