
- Graph Theory Tutorial
- Graph Theory - Home
- Graph Theory - Introduction
- Graph Theory - History
- Graph Theory - Fundamentals
- Graph Theory - Applications
- Types of Graphs
- Graph Theory - Types of Graphs
- Graph Theory - Simple Graphs
- Graph Theory - Multi-graphs
- Graph Theory - Directed Graphs
- Graph Theory - Weighted Graphs
- Graph Theory - Bipartite Graphs
- Graph Theory - Complete Graphs
- Graph Theory - Subgraphs
- Graph Theory - Trees
- Graph Theory - Forests
- Graph Theory - Planar Graphs
- Graph Theory - Hypergraphs
- Graph Theory - Infinite Graphs
- Graph Theory - Random Graphs
- Graph Representation
- Graph Theory - Graph Representation
- Graph Theory - Adjacency Matrix
- Graph Theory - Adjacency List
- Graph Theory - Incidence Matrix
- Graph Theory - Edge List
- Graph Theory - Compact Representation
- Graph Theory - Incidence Structure
- Graph Theory - Matrix-Tree Theorem
- Graph Properties
- Graph Theory - Basic Properties
- Graph Theory - Coverings
- Graph Theory - Matchings
- Graph Theory - Independent Sets
- Graph Theory - Traversability
- Graph Theory Connectivity
- Graph Theory - Connectivity
- Graph Theory - Vertex Connectivity
- Graph Theory - Edge Connectivity
- Graph Theory - k-Connected Graphs
- Graph Theory - 2-Vertex-Connected Graphs
- Graph Theory - 2-Edge-Connected Graphs
- Graph Theory - Strongly Connected Graphs
- Graph Theory - Weakly Connected Graphs
- Graph Theory - Connectivity in Planar Graphs
- Graph Theory - Connectivity in Dynamic Graphs
- Special Graphs
- Graph Theory - Regular Graphs
- Graph Theory - Complete Bipartite Graphs
- Graph Theory - Chordal Graphs
- Graph Theory - Line Graphs
- Graph Theory - Complement Graphs
- Graph Theory - Graph Products
- Graph Theory - Petersen Graph
- Graph Theory - Cayley Graphs
- Graph Theory - De Bruijn Graphs
- Graph Algorithms
- Graph Theory - Graph Algorithms
- Graph Theory - Breadth-First Search
- Graph Theory - Depth-First Search (DFS)
- Graph Theory - Dijkstra's Algorithm
- Graph Theory - Bellman-Ford Algorithm
- Graph Theory - Floyd-Warshall Algorithm
- Graph Theory - Johnson's Algorithm
- Graph Theory - A* Search Algorithm
- Graph Theory - Kruskal's Algorithm
- Graph Theory - Prim's Algorithm
- Graph Theory - Borůvka's Algorithm
- Graph Theory - Ford-Fulkerson Algorithm
- Graph Theory - Edmonds-Karp Algorithm
- Graph Theory - Push-Relabel Algorithm
- Graph Theory - Dinic's Algorithm
- Graph Theory - Hopcroft-Karp Algorithm
- Graph Theory - Tarjan's Algorithm
- Graph Theory - Kosaraju's Algorithm
- Graph Theory - Karger's Algorithm
- Graph Coloring
- Graph Theory - Coloring
- Graph Theory - Edge Coloring
- Graph Theory - Total Coloring
- Graph Theory - Greedy Coloring
- Graph Theory - Four Color Theorem
- Graph Theory - Coloring Bipartite Graphs
- Graph Theory - List Coloring
- Advanced Topics of Graph Theory
- Graph Theory - Chromatic Number
- Graph Theory - Chromatic Polynomial
- Graph Theory - Graph Labeling
- Graph Theory - Planarity & Kuratowski's Theorem
- Graph Theory - Planarity Testing Algorithms
- Graph Theory - Graph Embedding
- Graph Theory - Graph Minors
- Graph Theory - Isomorphism
- Spectral Graph Theory
- Graph Theory - Graph Laplacians
- Graph Theory - Cheeger's Inequality
- Graph Theory - Graph Clustering
- Graph Theory - Graph Partitioning
- Graph Theory - Tree Decomposition
- Graph Theory - Treewidth
- Graph Theory - Branchwidth
- Graph Theory - Graph Drawings
- Graph Theory - Force-Directed Methods
- Graph Theory - Layered Graph Drawing
- Graph Theory - Orthogonal Graph Drawing
- Graph Theory - Examples
- Computational Complexity of Graph
- Graph Theory - Time Complexity
- Graph Theory - Space Complexity
- Graph Theory - NP-Complete Problems
- Graph Theory - Approximation Algorithms
- Graph Theory - Parallel & Distributed Algorithms
- Graph Theory - Algorithm Optimization
- Graphs in Computer Science
- Graph Theory - Data Structures for Graphs
- Graph Theory - Graph Implementations
- Graph Theory - Graph Databases
- Graph Theory - Query Languages
- Graph Algorithms in Machine Learning
- Graph Neural Networks
- Graph Theory - Link Prediction
- Graph-Based Clustering
- Graph Theory - PageRank Algorithm
- Graph Theory - HITS Algorithm
- Graph Theory - Social Network Analysis
- Graph Theory - Centrality Measures
- Graph Theory - Community Detection
- Graph Theory - Influence Maximization
- Graph Theory - Graph Compression
- Graph Theory Real-World Applications
- Graph Theory - Network Routing
- Graph Theory - Traffic Flow
- Graph Theory - Web Crawling Data Structures
- Graph Theory - Computer Vision
- Graph Theory - Recommendation Systems
- Graph Theory - Biological Networks
- Graph Theory - Social Networks
- Graph Theory - Smart Grids
- Graph Theory - Telecommunications
- Graph Theory - Knowledge Graphs
- Graph Theory - Game Theory
- Graph Theory - Urban Planning
- Graph Theory Useful Resources
- Graph Theory - Quick Guide
- Graph Theory - Useful Resources
- Graph Theory - Discussion
Graph Theory - Adjacency Matrix
Adjacency Matrix
An adjacency matrix is a square matrix used to represent a graph. It is useful for representing graphs where it is important to know whether two vertices are adjacent (i.e., there is an edge between them). The adjacency matrix provides an efficient way to store graph information and check for edges between vertices.
For an undirected graph, the adjacency matrix is symmetric, as an edge from vertex i to vertex j implies an edge from vertex j to vertex i.

Adjacency Matrix: [[0 0 1 1 0 0] [0 0 0 0 1 1] [1 0 0 0 1 0] [1 0 0 0 0 0] [0 1 1 0 0 0] [0 1 0 0 0 0]]
Structure of the Adjacency Matrix
An adjacency matrix is a 2D array or matrix where each element matrix[i][j] represents the presence (or absence) of an edge between the vertices i and j. The dimensions of the matrix are n x n, where n is the number of vertices in the graph.
If there is an edge between vertex i and vertex j, the value at matrix[i][j] is 1 (or the weight of the edge if the graph is weighted). If no edge exists, the value is 0. For weighted graphs, the matrix stores the weight of the edge instead of 1.
Adjacency Matrix for Undirected Graphs
For an undirected graph, the adjacency matrix is symmetric, meaning that if vertex i is connected to vertex j, then matrix[i][j] = matrix[j][i].
Consider an undirected graph with 3 vertices: V = {A, B, C}, and edges {A-B, A-C}. The adjacency matrix for this graph would look like this −

A B C A 0 1 1 B 1 0 0 C 1 0 0
Adjacency Matrix for Directed Graphs
For a directed graph, the adjacency matrix is not necessarily symmetric. If there is an edge from vertex i to vertex j, the matrix stores a value of 1 at matrix[i][j] but not necessarily at matrix[j][i].
Consider a directed graph with 3 vertices: V = {A, B, C}, and edges {A->B, A->C}. The adjacency matrix for this directed graph would look like this −

A B C A 0 1 1 B 0 0 0 C 0 0 0
Adjacency Matrix for Weighted Graphs
In a weighted graph, the adjacency matrix stores the weight of the edge between vertices instead of just 1 or 0. If the weight between vertices i and j is w, then matrix[i][j] = w.
Consider a weighted graph with 3 vertices: V = {A, B, C}, and edges {A-B: 5, A-C: 3}. The adjacency matrix for this weighted graph would look like this −

A B C A 0 5 3 B 5 0 0 C 3 0 0
Properties of the Adjacency Matrix
The adjacency matrix has several major properties that make it useful for graph representation, they are −
Space Complexity
The space complexity of an adjacency matrix is O(n), where n is the number of vertices in the graph. This is because the matrix stores information for every possible pair of vertices, regardless of whether an edge exists between them.
Edge Lookup
Checking whether there is an edge between two vertices can be done in constant time, O(1). You can simply access the matrix at matrix[i][j] to determine if an edge exists.
Memory Usage
The adjacency matrix can be inefficient in terms of memory usage, especially for sparse graphs (graphs with fewer edges). For sparse graphs, the matrix will still require storage for all n possible edges, which can waste memory.
Edge Insertion
Inserting an edge in an adjacency matrix can be done in constant time, O(1). You can directly set the appropriate element in the matrix to 1 (or the edge weight).
Traversal Complexity
Traversal of an adjacency matrix typically requires iterating over the rows or columns, which has a time complexity of O(n) for the entire graph. This can be slow for large graphs.
Handling Loops
In a graph, a loop is an edge that connects a vertex to itself. In an adjacency matrix, loops are represented by setting matrix[i][i] to 1 (or the weight of the loop). The presence of loops can be easily detected by checking the diagonal elements of the matrix.
Handling Multiple Edges (Multigraphs)
For multigraphs (graphs with multiple edges between the same pair of vertices), the adjacency matrix can store the number of edges or the total weight of all edges between two vertices. Instead of 1, the matrix stores the count or weight of the edges.
Applications of the Adjacency Matrix
The adjacency matrix is commonly used in various graph-related algorithms and applications, such as −
Graph Traversal
Graph traversal algorithms such as Depth-First Search (DFS) and Breadth-First Search (BFS) can be implemented efficiently with adjacency matrices. While the time complexity of these algorithms remains O(n) for an adjacency matrix, the simplicity of edge lookups makes it a convenient representation for smaller graphs.
Finding Shortest Paths
The adjacency matrix is used in algorithms like Floyd-Warshall to find the shortest paths between all pairs of vertices. The matrix stores the direct distances between vertices, and the algorithm iteratively updates it to find the shortest paths.
Graph Connectivity
The adjacency matrix can be used to determine if a graph is connected. If there exists a path from every vertex to every other vertex, the graph is connected. This can be checked using graph traversal techniques such as DFS or BFS.
Graph Algorithms
Various other graph algorithms, including those for detecting cycles, topological sorting, and checking bipartiteness, can also utilize adjacency matrices for efficient computation.
Matrix Operations for Graphs
In linear algebra, matrix operations such as matrix multiplication can be used to analyze graph properties. For example, the power of the adjacency matrix can be used to find paths of length 2, 3, or more between vertices.
Adjacency Matrix: Pros and Cons
The adjacency matrix has several advantages and disadvantages depending on the graph's structure and the algorithms being applied −
Advantages
Following are the advantages of adjacency matrix −
- Simple to Implement: The adjacency matrix is easy to implement and access, making it a good choice for small to medium-sized graphs.
- Efficient Edge Lookup: The matrix allows for constant-time edge lookups, making it useful for algorithms that need to quickly check the presence of an edge.
- Good for Dense Graphs: The adjacency matrix is well-suited for dense graphs where the number of edges is close to the number of possible edges (O(n)).
Disadvantages
Following are the disadvantages of adjacency matrix −
- Space Inefficient for Sparse Graphs: For sparse graphs, the adjacency matrix consumes a lot of memory to store information about edges that do not exist.
- Slow for Large Graphs: The time complexity for traversal and manipulation of large graphs can be prohibitive when using an adjacency matrix, as it involves O(n) operations.
- Redundant Information: The matrix stores information about every possible edge, even if many edges do not exist, leading to redundant memory usage.
Adjacency Matrix Alternatives
In practice, there are several alternatives to the adjacency matrix, especially for large and sparse graphs −
Adjacency List
The adjacency list is a more space-efficient representation for sparse graphs. It uses less memory and provides faster traversal for sparse graphs, as it only stores the edges that exist in the graph.
Edge List
An edge list is a simple representation where each edge is stored as a pair of vertices. It is space-efficient for very sparse graphs but does not support efficient edge lookups.
Compressed Adjacency Matrix
For large graphs with many missing edges, compressed representations of the adjacency matrix, such as sparse matrices or compressed sparse row (CSR) format, can be used to save space and improve efficiency.