An open API service indexing awesome lists of open source software.

https://github.com/mbouzid/topological_sorting

C++ topological sorting algorithm and Dijkstra algorithm
https://github.com/mbouzid/topological_sorting

Last synced: 2 months ago
JSON representation

C++ topological sorting algorithm and Dijkstra algorithm

Awesome Lists containing this project

README

        

# Topological sorting & [EXTRA] Dijkstra algorithm

## Build in C++

## EN
Topological sorting algorithm / Project in "General mathematical knowledge of Computer Science" at University of Angers.
### Extra : see `void shortest_path( const vertex & source ) const` in `directed_graph.hpp` for the Dijkstra algo

## FR
Algorithme réalisant un tri topologique / Projet de "Fondements mathématiques de l'Informatique" à l'Université d'Angers.
### Bonus : l'algorithme de Dijkstra du plus court chemin se trouve dans le fichier `directed_graph.hpp` dans la méthode `void shortest_path(const vertex & source ) const`