This project applies search algorithms to the London Underground map to find optimal routes based on time and zone.
- Implements DFS, BFS, UCS, and Zone-Based Heuristic Search
- Graph state representation with cost and zone metadata
- Extended cost model for line changes
- Compares performance and optimality
undirected_map_final_vickshan_vicknakumaran.ipynb
β Main implementation notebooktubedata.csv
β Tube map with station-to-station data
Route: New Cross Gate β Stepney Green
Algorithm | Time (min) | Nodes Explored |
---|---|---|
DFS | 27 | 35 |
BFS | 12 | 8 |
UCS | 14 | 19 |
- Year: 2024
- University: Queen Mary University of London
- Author: Vickshan Vicknakumaran
Open the notebook in Jupyter, ensure tubedata.csv
is in the same directory, and run cells in order.
For academic and research use only.