-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadjacentMatrixGraph.cpp
68 lines (52 loc) · 1.12 KB
/
adjacentMatrixGraph.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Graph Representation Using Adjacent Matrix
#include<bits/stdc++.h>
using namespace std;
class Graph{
int v;
int **arr;
public:
Graph(int v){
this->v = v;
arr = new int*[v];
for(int i=0;i<v;i++){
arr[i] = new int[v];
}
for(int i=0;i<v;i++){
for(int j=0;j<v;j++){
arr[i][j] = 0;
}
}
}
void addEdge(int src,int dest);
void printGraph();
};
void Graph::printGraph(){
for(int i=0;i<v;i++){
for(int j=0;j<v;j++)
cout<<arr[i][j]<<" ";
cout<<endl;
}
}
// we can also set the weight of the given edge
void Graph::addEdge(int src,int dest){
arr[src][dest] = 1;
}
int main(){
Graph g(5);
cout<<"__---__ Implementation of Graph using Adjacent Matrix ___---____\n"<<endl;
g.addEdge(0,1);
g.addEdge(0,4);
g.addEdge(1,0);
g.addEdge(1,2);
g.addEdge(1,3);
g.addEdge(1,4);
g.addEdge(2,1);
g.addEdge(2,3);
g.addEdge(3,1);
g.addEdge(3,2);
g.addEdge(3,4);
g.addEdge(4,1);
g.addEdge(4,3);
g.printGraph();
return 0;
}