python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > python最短路径求解Dijkstra算法

python最短路径的求解Dijkstra算法示例代码

作者:望月12138

这篇文章主要给大家介绍了关于python最短路径的求解Dijkstra算法的相关资料,并使用Python的heapq模块实现该算法,通过示例展示了如何从节点0到节点8求解最短路径,需要的朋友可以参考下

前言

书接上回,之前的博客使用图论求解最短路径,但是只使用了 Matlab 的shortestpath 函数和 python 的 nx.shortest_path 函数进行求解。本文再介绍一种算法求解最短路径。

一、Dijkstra算法(迪克斯特拉算法)

算法步骤

以下是Dijkstra算法的详细步骤:

1.初始化:将源节点到自身的距离设为0,其他节点的距离设为无穷大。将所有节点标记为未访问。

2.选择未访问节点中距离最小的节点:将其标记为已访问,如果所有未访问节点的距离都是无穷大,
算法终止。

3.更新邻居节点的距离:对于邻居节点,如果通过当前节点可以获得更短的路径,则更新其距离。

4.重复步骤2和3,直到所有节点都被访问过或者目标节点的最短路径已经确定。

堆 heapq

基本功能下面是 heapq 中的一些基本函数及其解释:

重点强调两个函数:

heapq.heappush(heap, item): 将元素 item 添加到堆中,函数返回值是添加元素 item后的值(既包含原来的元素,也包含元素 item 。

heapq.heappop(heap): 弹出并返回堆中的最小元素,同时保持堆的不变性。函数返回值是堆中的最小元素,并且堆更新为不含有最小元素。

二、示例

表示出示例图

# 示例图(邻接表表示)
graph = {
    '0': {'1': 4, '2': 8},
    '1': {'0': 4, '2': 3, '3': 8},
    '2': {'0': 8, '1': 3, '4': 1, '5': 6},
    '3': {'1': 8, '4': 2, '6': 7, '7': 4},
    '4': {'2': 1, '3': 2, '5': 6},
    '5': {'2': 6, '4': 6, '7': 2},
    '6': {'3': 7, '7': 14, '8': 9},
    '7': {'3': 4, '5': 2, '6': 14, '8': 10},
    '8': {'6': 9, '7': 10}
}

定义Dijkstra算法函数

# 初始化距离字典,将所有节点的距离设为无穷大
distances = {vertex: float('infinity') for vertex in graph}
distances[start] = 0
# 初始化父亲节点
parent = {vertex: None for vertex in graph}
# 初始化优先队列,并将起始节点入队
priority_queue = [(0, start)]

(1)取出当前访问节点中距离最小的节点

(2)更新该节点相邻的节点和距离

(3)比较节点间的距离,若有更短的路径,则更新距离和该节点的父亲节点,并将该节点加入待比较的节点

while priority_queue:
    # 弹出堆中距离最小的节点
    current_distance, current_vertex = heapq.heappop(priority_queue)
    # print("距离最小的节点是:",current_distance, current_vertex, "更新后的队列:",priority_queue)

    # 如果当前距离已经大于已知的最短距离,则跳过
    if current_distance > distances[current_vertex]:
        continue

    # 更新相邻节点的距离
    for neighbor, weight in graph[current_vertex].items():
        distance = current_distance + weight
        # print("相邻节点的距离:",neighbor,distance)

        # 如果找到更短的路径,则更新距离,并将节点加入优先队列
        if distance < distances[neighbor]:
            distances[neighbor] = distance
            parent[neighbor] = current_vertex
            heapq.heappush(priority_queue, (distance, neighbor))
            # print("加入后的队列:",priority_queue)

当访问到最后一个节点时,heapq.heappop(heap) 函数弹出堆中最小的元素,堆中元素为空,退出循环。

Dijkstra算法函数代码

def dijkstra(graph,start):
    distances = {vertex: float('infinity') for vertex in graph}
    distances[start] = 0

    # 初始化父亲节点
    parent = {vertex: None for vertex in graph}
    priority_queue = [(0,start)]

    while priority_queue:
        # 弹出堆中距离最小的节点
        current_distance, current_vertex = heapq.heappop(priority_queue)
        # print("距离最小的节点是:",current_distance, current_vertex, "更新后的队列:",priority_queue)

        # 如果当前距离已经大于已知的最短距离,则跳过
        if current_distance > distances[current_vertex]:
            continue

        # 更新相邻节点的距离
        for neighbor, weight in graph[current_vertex].items():
            distance = current_distance + weight
            # print("相邻节点的距离:",neighbor,distance)

            # 如果找到更短的路径,则更新距离,并将节点加入优先队列
            if distance < distances[neighbor]:
                distances[neighbor] = distance
                parent[neighbor] = current_vertex
                heapq.heappush(priority_queue, (distance, neighbor))
                # print("加入后的队列:",priority_queue)
    return distances, parent

函数返回值:从起始点到每个节点的最短距离,和每个节点对应的父亲节点。

根据父亲节点,回溯最短路径

访问所有节点后得到的结果:

要求从 0 到 8 的最短距离,就从 8 开始回溯,8 的父亲节点是 7 ,7 的父亲节点是 3 ,3 的父亲节点是 4 ,4 的父亲节点是 2 ,2 的父亲节点是 1 ,1 的父亲节点是 0 ;所以从 0 到 8 的最短路径为: 0 —> 1 —> 2 —> 4 —> 3 —> 7 —> 8

代码如下:

# 输出路径回溯
def get_path(parent, start, end):
    path = []
    current = end
    while current is not None:
        path.append(current)
        current = parent[current]
    path.reverse()
    return path

三、python 代码

import heapq

graph = {
    '0': {'1': 4, '2': 8},
    '1': {'0': 4, '2': 3, '3': 8},
    '2': {'0': 8, '1': 3, '4': 1, '5': 6},
    '3': {'1': 8, '4': 2, '6': 7, '7': 4},
    '4': {'2': 1, '3': 2, '5': 6},
    '5': {'2': 6, '4': 6, '7': 2},
    '6': {'3': 7, '7': 14, '8': 9},
    '7': {'3': 4, '5': 2, '6': 14, '8': 10},
    '8': {'6': 9, '7': 10}
}

def dijkstra(graph,start):
    distances = {vertex: float('infinity') for vertex in graph}
    distances[start] = 0

    # 初始化父亲节点
    parent = {vertex: None for vertex in graph}
    priority_queue = [(0,start)]

    while priority_queue:
        # 弹出堆中距离最小的节点
        current_distance, current_vertex = heapq.heappop(priority_queue)
        # print("距离最小的节点是:",current_distance, current_vertex, "更新后的队列:",priority_queue)

        # 如果当前距离已经大于已知的最短距离,则跳过
        if current_distance > distances[current_vertex]:
            continue

        # 更新相邻节点的距离
        for neighbor, weight in graph[current_vertex].items():
            distance = current_distance + weight
            # print("相邻节点的距离:",neighbor,distance)

            # 如果找到更短的路径,则更新距离,并将节点加入优先队列
            if distance < distances[neighbor]:
                distances[neighbor] = distance
                parent[neighbor] = current_vertex
                heapq.heappush(priority_queue, (distance, neighbor))
                # print("加入后的队列:",priority_queue)
    return distances, parent

distances, parent = dijkstra(graph, '0')
# print(parent)
# print(distances)

# 输出路径回溯
def get_path(parent, start, end):
    path = []
    current = end
    while current is not None:
        path.append(current)
        current = parent[current]
    path.reverse()
    return path

end_node = '8'
path = get_path(parent, '0', end_node)
print(f"从节点 '0' 到节点 {end_node} 的路径:", path)

运行结果:

总结

本文说明了如何使用Dijkstra算法求解最短路径的问题,并使用python进行了代码编写。

到此这篇关于python最短路径的求解Dijkstra算法的文章就介绍到这了,更多相关python最短路径求解Dijkstra算法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文