Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 708 Bytes

README.md

File metadata and controls

21 lines (11 loc) · 708 Bytes

Dijkstra algorithm

Implementation and comparison of Dijkstra's and A* shortest path algorithms for the needs of the course Advanced Topics Algorithms Implementation Technologies in Department of Computer Engineering & Informatics, University of Patras.

Header file algorithms.hpp contains the following algorithms:

  1. Dijkstra's shortest path algorithm
  2. A* algorithm

as well as variables for which store the vertices which have been visited by each algorithm and time consumed.


Instructions:
make
./project

(Note that LEDA and Boost libraries are essential. Please edit LEDAROOT and BOOSTROOT variables in Makefile to declare the path of the libraries. )