What are the suitable data structures for graphs ?
I guess the answer varies on the type of graph?
in any case, any recommendations?
|
|
|
|
|
|
|
Seeing as you want an abstract data type, I won't mention anything about implementation. A graph The following may look like Java but I'm really thinking of any sufficiently expressive language:
I think this is the bare minimum. I haven't specified what is returned by
etc. Extending this to digraphs is left as an exercise |
||
|
|
|
Two of the most common structures for storing graphs are adjacency lists and adjacency matrices. Which to use typically depends both on what you're planning to do with the graph (as one may provide more optimal manipulation/access times than the other for a given algorithm), and also on the sparseness or density of the graph (lists are more compact for sparse graphs, matrices have less relative overhead the denser the graph is). |
||
|
|
|
When the graph is sparse, a See: |
||
|