-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvectorAdjacencyMatrixGraph.cpp
51 lines (38 loc) · 1.15 KB
/
vectorAdjacencyMatrixGraph.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <bits/stdc++.h>
using namespace std;
void addEdge(vector<vector<int>> &mat, int i, int j) {
mat[i][j] = 1;
mat[j][i] = 1; // undirected
}
// // Function to display the Adjacency Matrix
void displayMatrix(vector<vector<int>> &mat) {
int V = mat.size();
for (int i = 0; i < V; i++) {
for (int j = 0; j < V; j++)
cout << mat[i][j] << " ";
cout << endl;
}
}
int main() {
int v = 4;
vector<vector<int>> mat(v, vector<int>(v, 0));
addEdge(mat, 0, 1);
addEdge(mat, 0, 2);
addEdge(mat, 1, 2);
addEdge(mat, 2, 3);
/* Alternatively we can also create using below
code if we know all edges in advacem
vector<vector<int>> mat = {{ 0, 1, 0, 0 },
{ 1, 0, 1, 0 },
{ 0, 1, 0, 1 },
{ 0, 0, 1, 0 } }; */
cout << "Adjacency Matrix Representation" << endl;
displayMatrix(mat);
return 0;
}
/*
Action Adjacency Matrix Adjacency List
Adding Edge O(1) O(1)
Removing an edge O(1) O(N)
Initializing O(N*N) O(N)
*/