-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path9.cpp
More file actions
263 lines (223 loc) · 4.54 KB
/
9.cpp
File metadata and controls
263 lines (223 loc) · 4.54 KB
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
256
257
258
259
260
261
262
/*
To create ADT that implements the SET concept.
a. Add (newElement) -Place a value into the set
b. Remove (element) Remove the value
c. Contains (element) Return true if element is in collection
d. Size () Return number of values in collection Iterator () Return an iterator used to loop over collection
e. Intersection of two sets,
f. Union of two sets,
g. Difference between two sets,
h. Subset
*/
#include<iostream>
using namespace std;
class set
{
public:
int a[10],cnt;
set()
{
cnt=0;
}
void add();
void remove();
void search(int key);
void size();
void display();
};
void set::add()
{
if(cnt!=10)
{
cout<<"\nEnter element : ";
cin>>a[cnt];
cnt++;
}
else
cout<<"\nSpace not available !!!!!";
}
void set::remove()
{
if(cnt>0)
{
cout<<"\nDeleted Element is : "<<a[--cnt];
cnt++;//only for restoring
cnt--;
}
else
cout<<"\nSet is empty !!!!";
}
void set::display()
{
cout<<"\nSet = ";
for(int i=0;i<cnt;i++)
cout<<a[i]<<" ";
}
void set::search(int key)
{
for(int i=0;i<cnt;i++)
{
if(a[i]==key)
{
cout<<"\nElement found at location :"<<++i;
break;
}
}
}
void set::size()
{
// int size=cnt+1;
cout<<"\nSize of set is :"<<cnt;
}
class set_op
{
public:
int c[10];
void Union(int [],int,int [],int);
void Intersect(int [],int,int [],int);
void difference(int [],int,int [],int);
void subset(int [],int,int [],int);
};
void set_op::Union(int a[10],int cnt1,int b[10],int cnt2)
{
int i,j,flag=0,cnt3;
for(cnt3=0;cnt3<cnt1;cnt3++)
c[cnt3]=a[cnt3];
for(i=0;i<cnt2;i++)
{
for(j=0;j<cnt1;j++)
{
if(b[i]==c[j])
flag=1;
}
if(flag==0)
{
c[cnt3]=b[i];
cnt3++;
}
flag=0;
}
cout<<"Union of sets is : ";
for(i=0;i<cnt3;i++)
cout<<" "<<c[i];
}
void set_op::Intersect(int a[10],int cnt1,int b[10],int cnt2)
{
int i,j,cnt3=0;
for(i=0;i<cnt1;i++)
{
for(j=0;j<cnt2;j++)
{
if(a[i]==b[j])
{
c[cnt3]=a[i];
cnt3++;
}
}
}
cout<<"Intersection of sets is : ";
for(i=0;i<cnt3;i++)
cout<<" "<<c[i];
}
void set_op::difference(int a[10],int cnt1,int b[10],int cnt2)
{
int i,j,cnt3=0,flag;
for(i=0;i<cnt1;i++)
{
flag=0;
for(j=0;j<cnt2;j++)
{
if(a[i]==b[j])
{
flag=1;
}
}
if(flag==0)
{
c[cnt3]=a[i];
cnt3++;
}
}
cout<<"Difference of set A and B is : ";
for(i=0;i<cnt3;i++)
cout<<" "<<c[i];
}
void set_op::subset(int a[10],int cnt1,int b[10],int cnt2)
{
int i,j,flag=0;
for(i=0;i<cnt1;i++)
{
for(j=0;j<cnt2;j++)
{
if(a[i]==b[j])
{
flag=1;
break;
}
else
flag=0;
}
}
if(flag==1)
cout<<"A is a subset of B";
}
int main()
{
int ch,key;
set a,b;
set_op c;
do
{
cout<<"\nMenu\n\nFOR SET A\n1. Add element\n2. Remove\n3. Search\n4. Size\n5. Display\n\nFOR SET B\n6. Add element\n7. Remove\n8. Search\n9. Size\n10. Display\n\n11. Union\n12. Intersect\n13. Difference between set A and B\n14. Subset\n15. Exit\nEnter choice :";
cin>>ch;
switch(ch)
{
case 1:
a.add();
break;
case 2:
a.remove();
break;
case 3:
cout<<"\nEnter key : ";
cin>>key;
a.search(key);
break;
case 4:
a.size();
break;
case 5:
a.display();
break;
case 6:
b.add();
break;
case 7:
b.remove();
break;
case 8:
cout<<"\nEnter key : ";
cin>>key;
b.search(key);
break;
case 9:
b.size();
break;
case 10:
b.display();
break;
case 11:
c.Union(a.a,a.cnt,b.a,b.cnt);
break;
case 12:
c.Intersect(a.a,a.cnt,b.a,b.cnt);
break;
case 13:
c.difference(a.a,a.cnt,b.a,b.cnt);
break;
case 14:
c.subset(a.a,a.cnt,b.a,b.cnt);
break;
}
}while(ch!=15);
}