Software Engineering KB

Home

❯

01 Foundations

❯

01 Algorithms

❯

02 Sub Concept

❯

Bellman Ford

Bellman-Ford

Feb 10, 20261 min read

  • algorithms
  • graph-algorithms
  • bellman-ford
  • shortest-path

Bellman-Ford

← Back to Shortest Path

A shortest-path algorithm that handles graphs with negative edge weights. Relaxes all edges V-1 times and can detect negative-weight cycles. O(V * E) time, slower than Dijkstra but more general.

algorithms graph-algorithms bellman-ford shortest-path


Graph View

Backlinks

  • Shortest Path

Created with Quartz v4.5.2 © 2026

  • GitHub