You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we are using a dense matrix for representing the adjacency matrix. However it is sparse and symmetric in our case. Therefore, one could use a "list" structure (array of pointers to list) with the neighbors from each vertex.
The text was updated successfully, but these errors were encountered:
Currently we are using a dense matrix for representing the adjacency matrix. However it is sparse and symmetric in our case. Therefore, one could use a "list" structure (array of pointers to list) with the neighbors from each vertex.
The text was updated successfully, but these errors were encountered: