Symmetric Relation

Hi, I made a function that looks through a vector and looks through the pair of elements. Example: vector = {1 1 2 2 2 3 3 2} but actually its in pairs (1,1),(2,2),(2,3)(3,2). According to the Symmetric definition if 'A' is related to 'B' then 'B' is related to 'A'. From the vector it is symmetric since in the set there is (2,3) and (3,2). So far this is my code that checks to see if symmetric.

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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#include <vector>

using namespace std; 

const int MAX = 100;

void putinArray(vector <int> & orderedpairs, int arr[MAX][MAX], int dom, int rang); 
bool RelationOrFunction(int arr[MAX][MAX], int dom, int rang);
int SurOrInj(int arr[MAX][MAX], int dom, int rang); 
bool Reflexive(vector <int> pairs, int dom);
bool Symmetric(vector <int> pairs);
void printArray(int arr[MAX][MAX], int dom, int rang);

int main()
{
	int testcase, domain, range, pairs, p;
	int i = 0; 
	int j = 0;
	vector <int> nums;
	int arr[MAX][MAX] = {{0}}; 
	
	cout << "Please input the amount of test cases: "; 
	cin >> testcase; 
	cout << endl; 

	while(i < testcase)
	{
		cout << "Please type the amount of ordered pairs: "; 
		cin >> pairs; 
		cout << endl; 

		cout << "Please type the range of the domain: "; 
		cin >> domain; 
		cout << endl;

		cout << "Please type the range of the range: "; 
		cin >> range; 
		cout << endl;

		cout << "Please type the pairs: " ; 
		while(j < (pairs * 2))
		{
			cin >> p; 
			nums.push_back(p);
			j++;
		}
		putinArray(nums,arr,domain,range);
		printArray(arr,domain,range);		
		
		if(RelationOrFunction(arr,domain,range))
		{
			cout << "Function "; 
			if(SurOrInj(arr,domain,range) == 1)
			{
				cout << "Injective "; 
			}
			else if(SurOrInj(arr,domain,range) == 2)
			{
				cout << "Surjective "; 
			}
			else if(SurOrInj(arr,domain,range) == 3)
			{
				cout << "Injective Surjective Bijective "; 
			}
			else if(SurOrInj(arr,domain,range) ==4)
			{
				cout << " "; 
			}
		}
		else 
		{
			cout << "Relation "; 
			
			if(Reflexive(nums,domain))
			{
				cout << "Reflexive "; 
			}
			if(Symmetric(nums))
			{
				cout << "Symmetric "; 
			}
			
		}
		cout << endl;
		i++;
	}

	





	return 0; 
}

void putinArray(vector <int> &orderedpairs, int arr[MAX][MAX], int dom, int rang)
{
	const int MAX = 100; 
	
	
	for(int i = 0; i < orderedpairs.size(); i = i + 2)
	{
		arr[orderedpairs[i] - 1][orderedpairs[i+1] - 1] = 1; 
	}
}

bool RelationOrFunction(int arr[MAX][MAX], int dom, int rang)
{
	int total = 0;

	for(int i = 0; i < dom; i++)
	{
		for(int j = 0; j < rang; j++)
		{
			total = arr[i][j] + total; 
		}
		
		if(total == 1)
		{
			total = 0;
			continue; 
		}
		else
		{
				return false; 
		}
	}
	return true; 
}

int SurOrInj(int arr[MAX][MAX], int dom, int rang)
{
	int total = 0;
	
	for(int i = 0; i < dom; i++)
		{
			for(int j = 0; j < rang; j++)
			{
				total = arr[j][i] + total;
			}
			if(total >= 1)
			{
				total = 0;
				continue; 
			}
		}
		if(dom < rang)
		{
			return 1; //injective
		}
	
	for(int i = 0; i < dom; i++)
	{
		for(int j = 0; j < rang; j++)
		{
			total = arr[j][i] + total;
		}
		if(total <= 1)
		{
			total = 0;
			continue; 
		}
	}
	if(dom > rang)
	{
		return 2; //surjective
	}

	for(int i = 0; i < dom; i++)
	{
		for(int j = 0; j < rang; j++)
		{
			total = arr[j][i] + total;
		}
		if(total == 1)
		{
			total = 0;
			continue; 
		}
	}
	if(dom == rang)
	{
		return 3; //bijective
	}

	for(int i = 0; i < dom; i++)
	{
		for(int j = 0; j < rang; j++)
		{
			total = arr[j][i] + total;
		}
		if(total >= dom)
		{
			return 4; //none
		}
	}

	

}

bool Reflexive(vector <int> pairs, int dom)
{
	int j = 1;
	
	while(j <= dom)
	{
		for(int i = 0; i < pairs.size(); i = i+2)
		{
			if(pairs[i] == j && pairs[i+1] == j)
			{
				j++;
				
			}
		}
	}
	return true;
}

bool Symmetric(vector <int> pairs)
{
	int a, b;

	for(int i = 0; i < pairs.size(); i=i+2)
	{
		if(pairs[i] != pairs[i+1])
		{
			a = pairs[i]; 
			b = pairs[i+1];
			for(int j = 0; j < pairs.size(); j = j+2)
			{
				if(pairs[j] = b && pairs[j+1] == a)
				{
					return true; 
				}
			}
		}
	}
	return false; 
}



void printArray(int arr[MAX][MAX], int dom, int rang)
{
	for(int i = 0; i < dom; i++)
		{
			for(int j = 0; j < rang; j++)
			{
				cout << arr[i][j]; 
			}
			cout << endl; 
		}
}
Last edited on
I have two questions:
1) What the problem is?
2) Why not store actual pairs in vector instead of making surrogate pairs on fly?
1) The main problem is that it does not cout "Symmetric" in the int main when running it.
2) I actually store the pairs in the vector by inputting it from the keyboard.
2) I actually store the pairs in the vector by inputting it from the keyboard.
I mean to have either a vector of struct or std::pair<int, int>

Looka at the line 233: if(pairs[j] = b && pairs[j+1] == a) You are doing assigment instead of comparsion here. And compiler should issue a warning here.
GCC wrote:
main.cpp|233|warning: suggest parentheses around assignment used as truth value [-Wparentheses]|
Why not use arr for the Symmetry test? Something like:
1
2
3
4
5
6
7
8
9
bool Symmetric(int arr[MAX][MAX])
{
    for (int i=0; i<MAX; ++i) {
        for (int j=0; j<MAX; ++j) {
            if (arr[i][j] != arr[j][i]) return false;
        }
    }
    return true;
}
Topic archived. No new replies allowed.