wiki_research

personal research wiki
git clone https://a3nm.net/git/wiki_research/
Log | Files | Refs

graph_representation (194B)


      1 # Graph representation
      2 
      3 Ways to represent a [graph] in [memory]:
      4 
      5 - [adjacency_matrix]
      6 - [adjacency_list]
      7 - [sorted_list] of edges
      8 - [graph_compressed_representation]
      9 
     10 Up: [graph_basic_notions]