Demonstration of search algorithms in the graph.

by Rabestro
GNU/Linux ◆ xterm-256color ◆ bash 512 views

The project implements an interface for the weighted graph, as well as two algorithms for finding a path in the graph.

There are implementations and tests for two algorithms:

  • Breadth-first search
  • Dijkstra’s Algorithm

To demonstrate the work of search algorithms, I made a small console program. The program allows you to select one of three graph samples and search for a path using two algorithms.

Source code: https://github.com/rabestro/algorithms