-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrac1_AdjMat.cpp
119 lines (98 loc) · 2.65 KB
/
Prac1_AdjMat.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Implement the graph operation for union, intersection,
// compliment and subtraction of the two different graphs
#include <iostream>
int main(){
using namespace std;
int V;
cout << "Enter the number of vertices: " << endl;
cin >> V;
cout << "Enter the adjecency matrix of the first graph A: " << endl;
int **graphA = new int *[V];
for (int i = 0; i < V; i++)
{
graphA[i] = new int[V];
for (int j = 0; j < V; j++)
{
cin >> graphA[i][j];
}
}
cout << "Enter the adjecency matrix of the first graph B: " << endl;
int **graphB = new int *[V];
for (int i = 0; i < V; i++)
{
graphB[i] = new int[V];
for (int j = 0; j < V; j++)
{
cin >> graphB[i][j];
}
}
cout << "Union of the graph A and graph B" << endl;
for (int i = 0; i < V; i++)
{
for (int j = 0; j < V; j++)
{
cout << (graphA[i][j] || graphB[i][j]) << ' ';
}
cout << endl;
}
cout << "Intersection of the graph A and graph B" << endl;
for (int i = 0; i < V; i++)
{
for (int j = 0; j < V; j++)
{
cout << (graphA[i][j] && graphB[i][j]) << ' ';
}
cout << endl;
}
cout << "Subtraction graph A - graph B" << endl;
for (int i = 0; i < V; i++)
{
for (int j = 0; j < V; j++)
{
cout << (graphA[i][j] && (!graphB[i][j])) << ' ';
}
cout << endl;
}
cout << "Subtraction graph B - graph A" << endl;
for (int i = 0; i < V; i++)
{
for (int j = 0; j < V; j++)
{
cout << (graphB[i][j] && (!graphA[i][j])) << ' ';
}
cout << endl;
}
cout << "Complement of graph A" << endl;
for (int i = 0; i < V; i++)
{
for (int j = 0; j < V; j++)
{
if (i != j)
cout << (1 && (!graphA[i][j])) << ' ';
else
cout << "0 ";
}
cout << endl;
}
cout << "Complement of graph B" << endl;
for (int i = 0; i < V; i++)
{
for (int j = 0; j < V; j++)
{
if (i != j)
cout << (1 && (!graphB[i][j])) << ' ';
else
cout << "0 ";
}
cout << endl;
}
// free memory
for (int i = 0; i < V; i++)
{
delete[]graphA[i];
delete[]graphB[i];
}
delete[]graphA;
delete[]graphB;
return 0;
}