We haven’t encountered Winterfell yet, so we loop and run Dijkstra's algorithm again.
我们还没有遇到 Winterfell,所以我们循环并再次运行 Dijkstra 的算法。
单词 | Dijkstra algorithm |
释义 |
Dijkstra algorithm
原声例句
科技 Crash Course We haven’t encountered Winterfell yet, so we loop and run Dijkstra's algorithm again. 我们还没有遇到 Winterfell,所以我们循环并再次运行 Dijkstra 的算法。 科技 Crash Course The classic algorithmic solution to this graph problem was invented by one of the greatest minds in computer science practice and theory, Edsger Dijkstra, so it’s appropriately named Dijkstra's algorithm. 这个图问题的经典算法解决方案是由计算机科学实践和理论领域最伟大的思想家之一 Edsger Dijkstra 发明的,因此它被恰当地命名为 Dijkstra 算法。
中文百科
戴克斯特拉算法 Dijkstra's algorithm(重定向自Dijkstra algorithm)
![]() ![]() ![]() ![]() 戴克斯特拉算法(英语:Dijkstra's algorithm)是由荷兰计算机科学家艾兹赫尔·戴克斯特拉提出。迪科斯彻算法使用了广度优先搜索解决非负权有向图的单源最短路径问题,算法最终得到一个最短路径树。该算法常用于路由算法或者作为其他图算法的一个子模块。举例来说,如果图中的顶点表示城市,而边上的权重表示城市间开车行经的距离,该算法可以用来找到两个城市之间的最短路径。 该算法的输入包含了一个有权重的有向图 G,以及G中的一个来源顶点 S。我们以 V 表示 G 中所有顶点的集合。每一个图中的边,都是两个顶点所形成的有序元素对。(u, v) 表示从顶点 u 到 v 有路径相连。我们以 E 表示G中所有边的集合,而边的权重则由权重函数 w: E → [0, ∞] 定义。因此,w(u, v) 就是从顶点 u 到顶点 v 的非负权重(weight)。边的权重可以想像成两个顶点之间的距离。任两点间路径的权重,就是该路径上所有边的权重总和。已知有 V 中有顶点 s 及 t,Dijkstra 算法可以找到 s 到 t 的最低权重路径(例如,最短路径)。这个算法也可以在一个图中,找到从一个顶点 s 到任何其他顶点的最短路径。
英语百科
Dijkstra's algorithm 戴克斯特拉算法(重定向自Dijkstra algorithm)
![]() ![]() ![]() ![]() Dijkstra's algorithm is an algorithm for finding the shortest paths between nodes in a graph, which may represent, for example, road networks. It was conceived by computer scientist Edsger W. Dijkstra in 1956 and published three years later. The algorithm exists in many variants; Dijkstra's original variant found the shortest path between two nodes, but a more common variant fixes a single node as the "source" node and finds shortest paths from the source to all other nodes in the graph, producing a shortest-path tree. |
随便看 |
|
英汉网英语在线翻译词典收录了3779314条英语词汇在线翻译词条,基本涵盖了全部常用英语词汇的中英文双语翻译及用法,是英语学习的有利工具。