Introduction

Memory representation of graph theory refers to how graphs are stored and represented in computer memory or data structures. Graphs are mathematical structures consisting of nodes (vertices) and edges that connect these nodes. They are used to model various relationships and connections in real-world scenarios.

Different ways to represent memory representation of Graph

In graph theory, memory representation refers to how graphs are stored in a computer’s memory or data structures. There are several common ways to represent graphs, each with its own advantages and drawbacks. Here are some important points about memory representations of graphs:

Adjacency Matrix:

  • A square matrix (2D array) where the rows and columns represent vertices of the graph.
  • Entry (i, j) is 1 if there is an edge between vertex i and vertex j, otherwise 0.
  • Takes O(V^2) space, where V is the number of vertices.
  • Efficient for dense graphs (many edges), but wasteful for sparse graphs.
  • Quick to check for the presence of an edge but not efficient for operations like finding neighbors.
  • Example of an undirected graph’s adjacency matrix:
   0  1  2  3
0  0  1  1  0
1  1  0  1  1
2  1  1  0  1
3  0  1  1  0

In this example, there are 4 vertices (0, 1, 2, and 3), and the matrix indicates that there is an edge between vertex 0 and vertex 1, an edge between vertex 0 and vertex 2, and so on.

Adjacency List:

  • A list/array of lists/arrays, where each element corresponds to a vertex and contains the list of its adjacent vertices.
  • Takes O(V + E) space, where V is the number of vertices and E is the number of edges.
  • Efficient for sparse graphs as it only stores information about existing edges.
  • Better for operations like finding neighbors of a vertex.
  • Example of an undirected graph’s adjacency list:
0: 1 -> 2
1: 0 -> 2 -> 3
2: 0 -> 1 -> 3
3: 1 -> 2

In this example, vertex 0 is adjacent to vertex 1 and 2, vertex 1 is adjacent to vertex 0, 2, and 3, and so on.

The adjacency matrix and the adjacency list both representations have their own advantages and disadvantages. The adjacency matrix is space-efficient for dense graphs (those with many edges), but it consumes more space for sparse graphs. The adjacency list is space-efficient for sparse graphs, but traversing edges might be slower compared to the adjacency matrix for dense graphs.

Edge List:

  • A simple list of all edges in the graph, where each edge is represented by a pair of vertices.
  • Takes O(E) space.
  • Compact representation, suitable for both dense and sparse graphs.
  • Easy to iterate over all edges, but less efficient for neighbor-related queries.
  • Example of a graph’s edge list:
A - B
B - C
C - D
A - D
B - D

In this representation, each line indicates an edge between two nodes. For instance, the first line “A – B” represents an edge between node A and node B. The edge list captures all the connections within the graph without explicitly representing the nodes themselves.

Incidence Matrix:

  • A matrix where rows correspond to vertices and columns correspond to edges.
  • Entry (i, j) is 1 if vertex i is incident on edge j, -1 if it’s the other endpoint, and 0 otherwise.
  • Takes O(V * E) space.
  • Useful for specific algorithms like network flow problems, but generally less commonly used due to high space complexity.

Hash Map (Dictionary) of Adjacencies:

  • Uses a hash map (dictionary) where keys are vertices and values are lists of adjacent vertices.
  • Similar to the adjacency list but allows for more flexible vertex labels.
  • Efficient for adding and removing edges, but less efficient for certain graph traversal algorithms.

Sparse Matrix Representation:

  • Similar to the adjacency matrix, but it only stores non-zero entries.
  • Can be more memory-efficient than a full adjacency matrix for certain sparse graphs.

The choice of memory representation depends on the nature of the graph, the type of operations you need to perform frequently, and memory constraints. In practice, you might use different representations for different stages of an algorithm or problem-solving process.


more related content on Data Structure and Algorithms(DSA)

JOIN OUR NEWSLETTER
And get notified everytime we publish a new blog post.