Software Engineering KB

Home

❯

01 Foundations

❯

01 Algorithms

❯

02 Sub Concept

❯

Dijkstra

Dijkstra

Feb 10, 20261 min read

  • algorithms
  • graph-algorithms
  • dijkstra
  • shortest-path

Dijkstra

← Back to Shortest Path

A greedy algorithm that finds the shortest path from a source vertex to all other vertices in a graph with non-negative edge weights. Uses a priority queue for efficiency. O((V + E) log V) with a binary heap.

algorithms graph-algorithms dijkstra shortest-path


Graph View

Backlinks

  • Shortest Path
  • Bellman-Ford

Created with Quartz v4.5.2 © 2026

  • GitHub