Adjacency typedef

Adjacency = List<List<int>>

Unweighted: list of neighbors per node.

Implementation

typedef Adjacency = List<List<int>>;