Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 622 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 622 Bytes

Graph-Delta-Stepping-SSSP

A python implementation of a graph algorithm for solving the single source shortest path problem called Delta Stepping Algorithm

This project has two main files:

  • deltaStepping.py
  • dijkstra.py

Both files are implementations of single source shortest path problem. Dijkstra'a algorithm was the original reference for solving single source shortest path problem but performed badly when it came to parallelization. Delta Stepping is one of the variants which incorporates concepts of Bellman Ford's algorithm along with dijkstra's algorithm to get a better performance for parallelization.