www
studyline.ai
Explore
Library
Learn
Pricing
Login
Register
Single-Pair Shortest Path (SPSP)
Overview
Single-Pair Shortest Path (SPSP)
algorithms
data structures
graph theory
pathfinding
optimization
python
💬 Click on the content to Ask AI
Explore More:
🔥
A Star Search →
A* is an informed algorithm for the single-pair shortest path problem; it augments Dijkstra’s with an admissible/consistent heuristic to focus expansion toward the goal, relying on single-pair termination and path reconstruction.
🔥
Bidirectional Search →
Bidirectional search extends single-pair shortest path by running two coordinated searches from the source and target (e.g., BFS/Dijkstra variants), using the same optimality criteria and parent-pointer reconstruction, and stopping when the frontiers meet to reduce explored states.
Single-Source Shortest Path →
All-Pairs Shortest Path →