What are the differences between graph adjacency list and matrix, and how do they impact the efficiency of graph operations?
Graph adjacency list and matrix are two ways to represent connections between nodes in a graph. An adjacency list stores each node's neighbors in a list, while an adjacency matrix uses a 2D array to represent connections between nodes.
The adjacency list is more memory-efficient for sparse graphs with fewer connections, as it only stores information about existing connections. On the other hand, an adjacency matrix is more memory-efficient for dense graphs with many connections, as it stores information about all possible connections.
In terms of efficiency, adjacency lists are better for operations like finding neighbors of a node or traversing the graph, as they only require checking the list of neighbors for that node. However, adjacency matrices are better for operations like checking if there is a connection between two nodes, as it can be done in constant time by accessing the corresponding entry in the matrix.