当前位置:   article > 正文

【最短路径算法】一文掌握Dijkstra算法,详解与应用示例+代码

dijkstra算法

目录

1 Dijkstra算法

2 Dijkstra算法的步骤

3 Dijkstra算法python实现

4 Dijkstra算法应用示例详解


1 Dijkstra算法

        Dijkstra算法(迪杰斯特拉算法)是一种用于在加权图中查找从一个起始节点到所有其他节点的最短路径的算法。该算法最初由荷兰计算机科学家Edsger W. Dijkstra于1956年提出。Dijkstra算法适用于带有非负权重的有向图或无向图。

特点和限制:

  • Dijkstra算法仅适用于非负权重的图,因为它依赖于贪婪策略来选择当前最短路径。
  • 它可以找到从起始节点到所有其他节点的最短路径,因此适用于单源最短路径问题。
  • Dijkstra算法不会处理负权边,如果图中存在负权边,应该使用其他算法,如Bellman-Ford算法。
  • 算法的时间复杂度取决于数据结构的选择,一般情况下是O(V^2)或O(Vlog(V)),其中V是节点数。如果使用优先队列来优化,时间复杂度可以减小到O(Elog(V)),其中E是边数。

        Dijkstra算法在许多领域广泛应用,包括路线规划、网络路由、资源分配和许多其他需要找到最短路径的应用。

2 Dijkstra算法的步骤

  1. 创建一个空的最短路径字典,其中每个节点的距离设置为无穷大,起始节点的距离设置为0。

  2. 创建一个空的已访问节点集合。

  3. 从未访问的节点中选择距离起始节点最近的节点,标记为已访问。

  4. 对于已访问节点的所有邻居,计算通过已访问节点到达它们的距离,并更新最短路径字典。

  5. 重复步骤3和4,直到所有节点都被访问。

3 Dijkstra算法python实现

以下是Python中使用Dijkstra算法实现的示例代码,用于查找从起始节点到其他节点的最短路径:

  1. import heapq
  2. def dijkstra(graph, start):
  3. # 创建一个距离字典,用于存储每个节点到起始节点的距离
  4. distances = {node: float('inf') for node in graph}
  5. distances[start] = 0
  6. # 创建一个优先队列,以便选择下一个节点
  7. priority_queue = [(0, start)]
  8. while priority_queue:
  9. current_distance, current_node = heapq.heappop(priority_queue)
  10. # 如果当前距离大于已知距离,跳过
  11. if current_distance > distances[current_node]:
  12. continue
  13. # 遍历当前节点的邻居
  14. for neighbor, weight in graph[current_node].items():
  15. distance = current_distance + weight
  16. # 如果发现更短的路径,更新距离字典和优先队列
  17. if distance < distances[neighbor]:
  18. distances[neighbor] = distance
  19. heapq.heappush(priority_queue, (distance, neighbor))
  20. return distances
  21. # 创建一个示例图
  22. graph = {
  23. 'A': {'B': 2, 'D': 1},
  24. 'B': {'A': 2, 'C': 3, 'E': 2},
  25. 'C': {},
  26. 'D': {'E': 1},
  27. 'E': {}
  28. }
  29. # 起始节点
  30. start_node = 'A'
  31. # 调用Dijkstra算法函数
  32. shortest_distances = dijkstra(graph, start_node)
  33. # 打印最短路径和距离
  34. for node, distance in shortest_distances.items():
  35. print(f'Shortest distance from {start_node} to {node} is {distance}')

运行: 

        这段代码定义了一个 dijkstra 函数,用于执行Dijkstra算法。它接受一个图的表示和起始节点作为参数,并返回一个包含从起始节点到其他节点的最短路径的字典。然后,我们创建一个示例图,并使用Dijkstra算法找到从节点 A 到其他节点的最短路径。

        请注意,你可以根据你的需求更改示例图和起始节点,以便应用Dijkstra算法到你的具体问题中。

4 Dijkstra算法应用示例详解

假设我们有以下有向图:

在这个示意图中,有向图包括节点 A、B、C、D 和 E,以及它们之间的带权重的边。边的数字表示权重或距离。我们的目标是找到从节点 A 到其他节点的最短路径。

Dijkstra算法的执行步骤:

  1. 初始化:开始时,我们选择节点 A 作为起始节点,并将其距离设置为 0。同时,将其他节点的距离初始化为无穷大,表示尚未知道到达它们的最短路径。

  2. 选择下一个节点:首先,我们选择节点 A 作为当前节点。它是起始节点,距离已知。

  3. 更新距离:我们计算从节点 A 到其邻居节点 B 和 C 的距离,并将这些距离记录下来。当前已知的最短距离是从 A 到 B 的距离为 4,从 A 到 C 的距离为 2。

  4. 选择下一个节点:现在,我们选择距离最短的节点 C 作为当前节点。

  5. 更新距离:我们计算从 A 经过 C 到达其邻居节点 B 和 D 的距离,并将这些距离记录下来。距离从 A 经过 C 到 B 的距离变为 4 + 5 = 9,从 A 经过 C 到 D 的距离变为 2 + 5 = 7。

  6. 选择下一个节点:然后,我们选择距离最短的节点 B 作为当前节点。

  7. 更新距离:我们计算从 A 经过 B 到达其邻居节点 D 的距离,并将这个距离记录下来。距离从 A 经过 B 到 D 的距离变为 4 + 5 + 3 = 12。

  8. 选择下一个节点:最后,我们选择距离最短的节点 D 作为当前节点。

  9. 更新距离:我们计算从 A 经过 D 到达其邻居节点 E 的距离,并将这个距离记录下来。距离从 A 经过 D 到 E 的距离变为 4 + 5 + 3 + 7 = 19。

  10. 完成:所有节点都已被访问,算法结束。

以上最短路径从节点 A 到其他节点的距离如下: 

  • A到A是 0
  • A到B是 9
  • A到C是 2
  • A到D是 12
  • A到E是 19

        这个示意图展示了Dijkstra算法是如何逐步找到最短路径,并在每一步中选择距离最短的节点。算法的关键思想是贪婪地选择当前最短路径,以逐步构建最短路径树。


以下是Python代码示例,演示如何使用Dijkstra算法找到从节点 A 到其他节点的最短路径:

  1. import networkx as nx
  2. import matplotlib.pyplot as plt
  3. # 创建一个有向图
  4. G = nx.DiGraph()
  5. # 添加节点
  6. nodes = ['A', 'B', 'C', 'D', 'E']
  7. G.add_nodes_from(nodes)
  8. # 添加边和权重
  9. edges = [('A', 'B', 4), ('A', 'C', 2), ('B', 'C', 5), ('B', 'D', 10), ('C', 'D', 3), ('D', 'E', 7), ('E', 'B', 8)]
  10. G.add_weighted_edges_from(edges)
  11. # 定义起点
  12. start_node = 'A'
  13. # 运行Dijkstra算法
  14. shortest_paths = nx.single_source_dijkstra(G, source=start_node)
  15. # 提取最短路径信息
  16. shortest_distances, shortest_path_predecessors = shortest_paths
  17. # 修正labels的格式
  18. labels = {(edge[0], edge[1]): edge[2] for edge in G.edges(data='weight')}
  19. # 可视化图
  20. pos = nx.spring_layout(G, seed=42) # 布局算法,使图看起来更美观
  21. plt.figure(figsize=(10, 6))
  22. nx.draw(G, pos, with_labels=True, node_size=800, node_color='lightblue', font_size=12, font_weight='bold')
  23. nx.draw_networkx_edge_labels(G, pos, edge_labels=labels, font_size=10)
  24. # 绘制最短路径
  25. for node in nodes:
  26. if node != start_node:
  27. path = nx.shortest_path(G, source=start_node, target=node)
  28. path_edges = [(path[i], path[i + 1]) for i in range(len(path) - 1)]
  29. nx.draw_networkx_edges(G, pos, edgelist=path_edges, edge_color='red', width=2)
  30. plt.title("Dijkstra Algorithm - Shortest Paths")
  31. plt.show()
  32. # 打印最短路径和距离
  33. for node, distance in shortest_distances.items():
  34. if node != start_node:
  35. path = nx.shortest_path(G, source=start_node, target=node)
  36. print(f"Shortest path from {start_node} to {node}: {path}, Distance: {distance}")

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/128046
推荐阅读
  

闽ICP备14008679号