Define adjacency list.
3 years ago
Data Structure and Algorithm
Adjacency list is an array indexed by vertex number containing linked lists. Each node Vi the ith array entry contains a list with information on all edges of G that leave Vi. It is used to represent the graph related problems.
Sanisha Maharjan
Jan 23, 2022