Software Engineering KB

Home

❯

01 Foundations

❯

01 Algorithms

❯

01 Concept

❯

Shortest Path

Shortest Path

Feb 10, 20261 min read

  • algorithms
  • graph-algorithms
  • shortest-path

Shortest Path

← Back to Graph Algorithms

Algorithms for finding the path with minimum total weight between vertices in a graph. Shortest path problems are fundamental in routing, navigation, and network optimization.

Key Properties

  • Dijkstra
  • Bellman-Ford
  • Floyd-Warshall
  • A-Star

Related

  • Traversal (BFS gives shortest path in unweighted graphs)

algorithms graph-algorithms shortest-path


Graph View

  • Shortest Path
  • Key Properties
  • Related

Backlinks

  • Graph Algorithms
  • Minimum Spanning Tree
  • Network Flow
  • Traversal
  • A-Star
  • Bellman-Ford
  • Dijkstra
  • Floyd-Warshall

Created with Quartz v4.5.2 © 2026

  • GitHub