What is better adjacency lists or adjacency matrix for graph problems in c++? And what are the advantages and disadvantages of each?
EDIT:can anyone provide a link with a clean code for say Breadth first search in linked lists format ??
|
What is better adjacency lists or adjacency matrix for graph problems in c++? And what are the advantages and disadvantages of each? EDIT:can anyone provide a link with a clean code for say Breadth first search in linked lists format ?? |
||||
| show 1 more comment |
|
It depends on the problem. An adjacency matrix uses O(n*n) memory. It has fast lookups to check for presence or absence of a specific edge, but slow to iterate over all edges. Adjacency lists use memory in proportion to the number edges, which might save a lot of memory if the adjacency matrix is sparse. It is fast to iterate over all edges, but finding the presence or absence specific edge is slightly slower than with the matrix. |
|||||||||
|
|
If you care a lot about memory, you can follow this formula for a simple graph that allows loops: An adjacency matrix occupies n^2/8 byte space. An adjacency list occupies 8e space, where e is the number of edges (32bit computer). If we define the density of the graph as d = e/n^2 (number of edges divided by the maximum number of edges), we can find the "breakpoint" where a list takes up more memory than a matrix: 8e > n^2/8 when d > 1/64 So with these numbers (still 32-bit specific) the breakpoint lands at 1/64. If the density (e/n^2) is bigger than 1/64, then a matrix is preferable if you want to save memory. You can read about this at wikipedia (article on adjacency matrices) and a lot of other sites. |
|||||||||
|
|
If you are looking at graph analysis in C++ probably the first place to start would be the boost graph library, which implements a number of algorithms including BFS. EDIT This previous question on SO will probably help: how-to-create-a-c-boost-undirected-graph-and-traverse-it-in-depth-first-search |
|||||
|
|
It depends on what you're looking for. With adjacency matrices you can answer fast to questions regarding if a specific edge between two vertices belongs to the graph, and you can also have quick insertions and deletions of edges. The downside is that you have to use excessive space, especially for graphs with many vertices, which is very inefficient especially if your graph is sparse. On the other hand, with adjacency lists it is harder to check whether a given edge is in a graph, because you have to search through the appropriate list to find the edge, but they are more space efficient. Generally though, adjacency lists are the right data structure for most applications of graphs. |
||||
|
|
Adding on to keyser5053's answer about memory usage. For a directed graph, an adjacency matrix (using 1 bit per edge) would use With an adjacency list, the maximum number of edges before overtaking an adjacency matrix, is For a directed graph, where
Any more than this, and it will overtake an adjacency matrix in size. If we plug this into keyser5053's formula, d = e / n^2 (where e is all edges), and note that 1/s is the break point:
However, given the size of our problem, 64 bits for a pointer is a bit of overkill. If we just use shorts as pointer offsets (16 bit int indices), we can fit (per node):
Which is better, but it is still a long shot from what the matrix can do for the same amount of memory. This is of course excluding the costs it would also take to manage the lists. But definitely food for thought when deciding whether to use one or the other. |
|||
|
|
std::list(or better yet,std::vector). – avakar Feb 7 '10 at 21:16