Graph Search: Adjacency List
Date: 2013-11-25 |
DISCLOSURE: If you buy through affiliate links, I may earn a small commission. (disclosures)
An Adjacency list is, simply, a list of each node and the nodes that it is connected to. Here’s an example:
Adjacency List
- 1,2,5
- 1,5,3
- 2,4
- 3,5,6
- 1,2,4
- 4
Want more like this?
The best way to support my work is to like / comment / share for the algorithm and subscribe for future updates.