Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Efficient Graph Design: Matrix vs List Decision Guide | Data Structure
Feb 5, 2025
115 views
Written by Prashant Basnet
Prashant Basnet, a software engineer at Unisala.com, focuses on software development and enjoys building platforms to share knowledge. Interested in system design, data structures, and is currently learning NLP
let's say we have a graph:
Adjacency List:
Represent this graph as an
Each node , we take is as the index of an Array:
Each values in the array represents the nodes. that the index node connects to:
A complete adjacencyList to represent our original graph looks like:
For Graphs With String:
Yes: for example:
If this is the case then, adjacency list is going to take the form of object where:
If we were to look up for value of B, then we can easily do so Graph['B']
This is the main benefit of using adjacency list. We get really fast lookup & it's easy to traverse from one node to it's children or to it's siblings.
Adjacency Matrix:
It uses 2D array or matrix, here we are going to represent each node as outsides arrays' indices.
And for every array in the index, (index representing a node) we will represent the connection / edges in the Graph.
For the index 0, outside we represent it as a node, and check the graph, where node 0 is connected to what other nodes?
If we complete this matrix this is how it looks:
Space complexity is going to be number of nodes squared because that's how many units that we have to store inside our 2D array.
Whereas Adjacency list is depended on the number of edges that are in the graph. Most of the time ends up being smaller, but once again depends on the graph so we need to evaluate before we determine on which Adjacency relationship list or matrix to use?
Space complexity:
Time Complexity:
Real-world use cases:
Practical considerations:
Implementation variations:
#graph #dataStructures #adjacencyList #adjacencyMatrix