Pages
(Move to ...)
Home
Legal
Info
HowTos
Code
Publications
Music
Finance
Links
Comics
Donate
▼
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