Intro to Algorithms
An adjacency list is a data structure used to represent a graph, where each vertex maintains a list of its adjacent vertices. This representation is efficient for storing sparse graphs and makes it easier to traverse connections during graph algorithms.
congrats on reading the definition of adjacency list. now let's actually learn it.