Dijkstra's algorithm visualizer
This program allows the user to create their own graph and pass two params (origin vertex and destination vertex) for the algorithm to search for the shortest path between them.
To build this software you'll need the graphics library raylib
installed in your computer. Then, inside of the project folder run:
$ make
and then:
$ ./spv [ORIG_VERT] [DEST_VERT]
Action | Keybind |
---|---|
Create vertex | Right click |
Link vertexes | Left click |
Reset | R |
Quit | ESC |