по образцу, найденному здесь пытаюсь перегрузить оператор
находит один повтор. символ и все, не возвращается в for
C++ |
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
| // перегрузить оператор проверки на подмножество
bool operator > (const Set &b) {
if (b.maxsize > this->maxsize)
{
cout << "размеры несопоставимы!" << endl;
return false;
}
//cout << "размеры сопоставимы!" << endl;
for (int i = 0; i <= b.cursize; i++) // идем по элементам b
{
bool notfound = true; // считаем пока , что b[i] нет
for (int j = 0; j <= this->cursize; j++) // сравниваем со всеми a[j] по очереди
{
if (b.data[i] == this->data[j]) // нашли
{
cout << "является!" << b.data[i] << this->data[j] << endl;
notfound = false;
break;
}
}
if (notfound)
{
cout << "не является!" << endl;
return false;
} // если не нашли возвращаем false
}
return true; // все найдены
};
вот сам класс
class Set {
private:
char* data;
int maxsize;
int cursize;
public:
Set() {};
Set(int n) {
maxsize = n;
data = new char[maxsize];//выделить динамическую память для массива элементов
cursize = 0;
}
Set(const Set& ob) {
maxsize = ob.maxsize;
cursize = ob.cursize;
data = new char[maxsize];
for (int i = 0; i < cursize; i++)
data[i] = ob.data[i];
}
~Set() {
delete[] data;
}
public:
//вставить по принципу дерева
//(упорядоченная вставка при помощи двоичного поиска)
Set& operator + (const char c) {
if (cursize >= maxsize)
return *this;
else if (!cursize || (c > data[cursize - 1])) {
data[cursize++] = c;
return *this;
}
int m, f = 0, l = cursize;
while (f < l) {
m = f + (l - f) / 2;
if (c == data[m])
return *this;
else if (c < data[m])
l = m;
else
f = m + 1;
}
for (int i = cursize; i > f; --i)
data[i] = data[i - 1];
data[f] = c;
++cursize;
return *this;
}
//
Set& operator - (const char d) {
unsigned int number, i, j;
for (i = 0; i < cursize; i++)
{
if (d == data[i])
{
for (j = i; j < cursize - 1; j++)
data[j] = data[j + 1];
cursize--;
}
}
return *this;
};
// перегрузить оператор равенства
bool operator == (const Set &c) {
if (this->maxsize != c.maxsize)
{
cout << "размеры неравны!" << endl;
return false;
}
cout << "размеры равны!" << endl;
for (int i = 0; i < c.cursize; i++)
{
if (this->data[i] != c.data[i])
{
cout << "но значения не неравны!" << endl;
return false;
}
else
cout << "значения равны!" << endl;
}
return true;
};
// перегрузить оператор неравенства
bool operator != (const Set &c) {
if (this->maxsize != c.maxsize)
{
cout << "размеры неравны!" << endl;
return true;
}
cout << "размеры равны!" << endl;
for (int i = 0; i < c.cursize; i++)
{
if (this->data[i] != c.data[i])
{
cout << "значения не равны!" << endl;
return true;
}
else
cout << "значения равны!" << endl;
}
return false;
};
// перегрузить оператор проверки на подмножество
bool operator > (const Set &b) {
if (b.maxsize > this->maxsize)
{
cout << "размеры несопоставимы!" << endl;
return false;
}
//cout << "размеры сопоставимы!" << endl;
for (int i = 0; i <= b.cursize; i++) // идем по элементам b
{
bool notfound = true; // считаем пока , что b[i] нет
for (int j = 0; j <= this->cursize; j++) // сравниваем со всеми a[j] по очереди
{
if (b.data[i] == this->data[j]) // нашли
{
cout << "является!" << b.data[i] << this->data[j] << endl;
notfound = false;
break;
}
}
if (notfound)
{
cout << "не является!" << endl;
return false;
} // если не нашли возвращаем false
}
return true; // все найдены
};
//ввести элемент множества с клавиатуры
Set& Input() {
char c;
cout << "введи новый символ в множество Дерево" << endl;
cin >> c;
if (cursize >= maxsize)
return *this;
else if (!cursize || (c > data[cursize - 1])) {
data[cursize++] = c;
return *this;
}
int m, f = 0, l = cursize;
while (f < l) {
m = f + (l - f) / 2;
if (c == data[m])
return *this;
else if (c < data[m])
l = m;
else
f = m + 1;
}
for (int i = cursize; i > f; --i)
data[i] = data[i - 1];
data[f] = c;
++cursize;
};
// удалить элемент множества
void extract()
{
unsigned int number, n, i, j;
n = cursize;
std::cout << "Введите номер элемента от 0 до " << cursize - 1 << std::endl;
std::cin >> number;
if (number < 0 || number > cursize)
std::cout << "Ошибка " << std::endl;
else
{
for (i = 0; i < n; i++)
{
if (i == number)
{
for (j = i; j < n - 1; j++)
data[j] = data[j + 1];
n--;
}
}
cursize--;
}
};
//вывести все элементы множества на экран
void Print(void) {
cout << "размер множества = " << cursize << " элементов" << endl;
cout << "множество состоит из " << endl;
for (int i = 0; i < cursize; ++i)
cout << data[i] << ' ';
cout << endl;
}
bool IsSubSet(const Set &a, const Set &b)
{
for (int i = 0; i < b.cursize; i++) // идем по элементам b
{
bool notfound = true; // считаем пока , что b[i] нет
for (int j = 0; j < a.cursize; j++) // сравниваем со всеми a[j] по очереди
{
if (b.data[i] == a.data[j]) // нашли
{
notfound = false;
break;
}
}
if (notfound)return false; // если не нашли возвращаем false
}
return true; // все найдены
}
};
class Mass_Set
{public:
int msize;
int csize;
Set* d;
Set* dd;
// Set a[];
Set& operator[](int i) {
return d[i];
};
Mass_Set(int n)
{
msize = n;
d = new Set[msize];//
csize = 0;
};
Mass_Set()
{
};
~Mass_Set()
{
}
}; |
|