Pages
(Move to ...)
Home
Info
HowTo
Code
Publications
Finance
Links
Legal
▼
27/05/2020
[C++] Graph adjacency list shortest path BFS
Here is a simple graph model using
adjacency lists
. The edges are undirected and we will also track edge weights, but ignore them at this time for the
shortest path calculation
between two given points (therefore we can use a simple
BFS
).
‹
›
Home
View web version