About 73,400 results
Open links in new tab
  1. Dijkstra's algorithm - Wikipedia

    Dijkstra's algorithm (/ ˈdaɪk.strəz /, DYKE-strəz) is an algorithm for finding the shortest paths between nodes in a weighted graph, which may represent, for example, a road network. It was conceived by …

  2. Edsger W. Dijkstra - Wikipedia

    Edsger Wybe Dijkstra (/ ˈdaɪkstrə / DYKE-strə; Dutch: [ˈɛtsxər ˈʋibə ˈdɛikstraː] ⓘ; 11 May 1930 – 6 August 2002) was a Dutch computer scientist, programmer, mathematician, and science essayist. …

  3. Dijkstra's Algorithm - GeeksforGeeks

    Jan 21, 2026 · Dijkstra’s algorithm always picks the node with the minimum distance first. By doing so, it ensures that the node has already checked the shortest distance to all its neighbors. If this node …

  4. A Complete Guide to Dijkstra’s Shortest Path Algorithm

    What is Dijkstra’s algorithm? Dijkstra’s algorithm (or Dijkstra’s shortest path algorithm) is used to find the minimum distance from a starting node (source) to every other node in a weighted graph with non …

  5. DSA Dijkstra's Algorithm - W3Schools

    Dijkstra's algorithm is often considered to be the most straightforward algorithm for solving the shortest path problem. Dijkstra's algorithm is used for solving single-source shortest path problems for …

  6. Printing Paths in Dijkstra's Shortest Path Algorithm

    Jul 23, 2025 · Given a graph and a source vertex in the graph, find the shortest paths from the source to all vertices in the given graph. We have discussed Dijkstra's Shortest Path algorithm in the below …

  7. Dijkstra's Algorithm and the A* Algorithm - web.stanford.edu

    Dijkstra’s Algorithm The second shortest-path search algorithm we are going to look at is Dijkstra’s Algorithm, named after the computer scientist Edsger Dijkstra. Dijkstra’s algorithm is greedy (and …

  8. Dijkstra Algorithm in Java | Baeldung

    May 11, 2024 · The emphasis in this article is the shortest path problem (SPP), being one of the fundamental theoretic problems known in graph theory, and how the Dijkstra algorithm can be used …

  9. E.W.Dijkstra Archive: Home page

    Mar 30, 2021 · When Dijkstra himself didn’t provide the backward references, we indicate the relationship by "see also" links in the index, leaving the judgment of the extent to which the earlier …

  10. Dijkstra's Algorithm based Common Questions - GeeksforGeeks

    Dec 22, 2025 · Dijkstra’s Algorithm is one of the most popular algorithms in graph theory, used to find the shortest path from a single source to all other vertices in a graph with non-negative edge weights. …