An adjacency matrix, once it has been formed can give us another piece of infromatio looking at rows and columns. Adjacency Lists which hive us the neighbours of a given node. For example if we want to know the node 4 neighbours we just look at row or column 4.
n^2
| For n verticesn + e*2*2
| For n vertices and e vertices(n*(n-1))/2
(n*(n-1))