-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
366 lines (290 loc) · 9.15 KB
/
main.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
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
#include "set.h"
#include <iostream>
#include <cassert>
#include <string>
/**
@brief Definizione del funtore per l'uguaglianza tra interi
Funtore che definisce il criterio con cui vengono comparate
due variabili di tipo intero per valutarne l'uguaglianza.
**/
struct equal_int{
bool operator()(const int a, const int b) const {
return a == b;
}
};
/**
@brief Definizione del funtore per il controllo della disparità
Funtore che definisce il criterio con cui vengono comparate
due variabili di tipo intero per valutarne la disparità.
**/
struct is_odd{
bool operator()(const int a) const {
return (a%2) != 0;
}
};
/**
@brief Definizione del funtore per l'uguaglianza tra stringhe
Funtore che definisce il criterio con cui vengono comparate
due variabili di tipo stringa per valutarne l'uguaglianza.
**/
struct equal_string{
bool operator()(const std::string &str1,
const std::string &str2) const {
return str1 == str2;
}
};
/**
@brief Definizione del funtore per il controllo della lunghezza della stringa
Funtore che controlla se la lunghezza della stringa
presa come parametro d'ingresso sia uguale a 5.
**/
struct string_length_5{
bool operator()(const std::string &str) const {
return str.length() == 5;
}
};
/**
@brief Definizione della struttura che rappresenta una voce
Definizione di una voce, da considerarsi come una voce di una rubrica telefonica,
contenente tre stringhe come attributi membro.
**/
struct voce{
std::string nome;
std::string cognome;
std::string ntel;
/**
@brief Costruttore secondario
Costruttore secondario. Permette di istanziare una voce con un nome,
un cognome e un numero di telefono.
@param n Il nome da assegnare alla voce.
@param cg Il cognome da assegnare alla voce.
@param nt Il numero di telefono da assegnare alla voce.
**/
voce(const std::string &n, const std::string &cg, const std::string &nt)
: nome(n), cognome(cg), ntel(nt) {}
/**
@brief Definizione dell'operatore di uguaglianza
Operatore di uguaglianza. Definisce il criterio di comparazione
tra due voci.
@param other La voce con cui effettuare la comparazione.
@return Il risultato (booleano) della comparazione.
**/
bool operator==(const voce &other) const{
return (this->ntel == other.ntel &&
this->nome == other.nome &&
this->cognome == other.cognome);
}
};
/**
@brief Operatore di stream
Permette di spedire su uno stream di output il contenuto di una voce.
@param os stream di output
@param v Voce sorgente i cui elementi verranno spediti sullo stream.
@return Il riferimento allo stream di output.
**/
std::ostream &operator<<(std::ostream &os, const voce &v){
os << "[Nome: " << v.nome << ", Cognome: " << v.cognome << ", Num: " << v.ntel << "]";
os << std::endl;
return os;
}
/**
@brief Definizione del funtore per l'uguaglianza tra voci
Funtore che definisce il criterio con cui vengono comparate
due variabili di tipo "voce" per valutarne l'uguaglianza.
**/
struct equal_voce{
bool operator()(const voce &v1, const voce &v2) const {
return v1 == v2;
}
};
/**
@brief Definizione del funtore per il controllo del cognome di una voce
Funtore che controlla se il cognome di una voce sia uguale a "Rossi".
@param v Voce da controllare.
@return Il risultato (booleano) della valutazione del cognome.
**/
struct voce_surname_Rossi{
bool operator()(const voce &v) const {
return (v.cognome == "Rossi");
}
};
void test_int(){
typedef set<int, equal_int> set_int_type;
set_int_type set1; //default constructor
set_int_type set2(set1); //copy-constructor
try{
set1.add(5); //add(), search()
set1.add(4);
set1.add(23);
set1.add(-56);
set1.add(1);
set1.add(-9);
set1.add(5); //already_existing_exception
}catch(already_existing_exception){
std::cout << "already_existing_exception CATCHED" << std::endl;
};
assert(set1[0] == 5); //operator[]
assert(set1[1] == 4);
assert(set1[2] == 23);
assert(set1[3] == -56);
std::cout << set1 << std::endl; //operator <<, const_iterator
set_int_type::const_iterator i, ie; //const_iterator
i = set1.begin();
ie = set1.end();
set_int_type set_iterators(i, ie); //set(Q b, Q e)
assert(set_iterators[0] == 5); //operator[]
assert(set_iterators[1] == 4);
assert(set_iterators[2] == 23);
assert(set_iterators[3] == -56);
set2 = set1; //operator=
std::cout << set2 << std::endl;
try{
set1.remove(5); //head deletion
set1.remove(-56); //tail deletion
set1.add(56);
set1.add(57);
set1.remove(56); //middle deletion
set1.remove(565656); //not_existing_exception
}catch(not_existing_exception){
std::cout << "not_existing_exception CATCHED" << std::endl;
};
set1.clear_set(); //clear_set()
assert(set1.size() == 0); //size()
set_int_type filtered;
filtered = filter_out(set2, is_odd()); //filter_out
assert(filtered[0] == 4);
assert(filtered[1] == -56);
set1.add(1010);
set1.add(-999);
set1.add(0);
set_int_type concat;
concat = set1 + set2; //operator+
assert(concat[0] == 1010);
assert(concat[8] == -9);
std::cout << "test_int() OK" << std::endl;
std::cout << "---------------------" << std::endl;
}
void test_string(){
typedef set<std::string, equal_string> set_string_type;
set_string_type set1; //default constructor
set_string_type set2(set1); //copy-constructor
try{
set1.add("Mario"); //add(), search()
set1.add("Giovanni");
set1.add("Luca");
set1.add("Lucia");
set1.add("Sara");
set1.add("Deborah");
set1.add("Mario"); //already_existing_exception
}catch(already_existing_exception){
std::cout << "already_existing_exception CATCHED" << std::endl;
};
assert(set1[0] == "Mario"); //operator[]
assert(set1[1] == "Giovanni");
assert(set1[2] == "Luca");
assert(set1[3] == "Lucia");
std::cout << set1 << std::endl; //operator <<, const_iterator
set_string_type::const_iterator i, ie; //const_iterator
i = set1.begin();
ie = set1.end();
set_string_type set_iterators(i, ie); //set(Q b, Q e)
assert(set_iterators[0] == "Mario"); //operator[]
assert(set_iterators[1] == "Giovanni");
assert(set_iterators[2] == "Luca");
assert(set_iterators[3] == "Lucia");
set2 = set1; //operator=
std::cout << set2 << std::endl;
try{
set1.remove("Mario"); //head deletion
set1.remove("Lucia"); //tail deletion
set1.add("Matteo");
set1.add("Gianni");
set1.remove("Matteo"); //middle deletion
set1.remove("Piero"); //not_existing_exception
}catch(not_existing_exception){
std::cout << "not_existing_exception CATCHED" << std::endl;
};
set1.clear_set(); //clear_set()
assert(set1.size() == 0); //size()
set_string_type filtered;
filtered = filter_out(set2, string_length_5()); //filter_out
assert(filtered[0] == "Giovanni");
assert(filtered[1] == "Luca");
assert(filtered[2] == "Sara");
assert(filtered[3] == "Deborah");
set1.add("Mattia");
set1.add("Leonardo");
set1.add("Fabio");
set_string_type concat;
concat = set1 + set2; //operator+
assert(concat[4] == "Giovanni");
assert(concat[6] == "Lucia");
std::cout << "test_string() OK" << std::endl;
std::cout << "---------------------" << std::endl;
}
void test_voce(){
typedef set<voce, equal_voce> set_voce_type;
set_voce_type set1; //default constructor
set_voce_type set2(set1); //copy-constructor
voce v1("Mario", "Rossi", "6959595");
voce v2("Luca", "Rossi", "8855855");
voce v3("Lucia", "Rossi", "123455");
voce v4("Sara", "Verdi", "987654");
voce v5("Deborah", "Verdi", "2548963");
try{
set1.add(v1); //add(), search()
set1.add(v2);
set1.add(v3);
set1.add(v4);
set1.add(v5);
set1.add(v1); //already_existing_exception
}catch(already_existing_exception){
std::cout << "already_existing_exception CATCHED" << std::endl;
};
assert(set1[0] == v1); //operator[]
assert(set1[1] == v2);
assert(set1[4] == v5);
std::cout << set1 << std::endl; //operator <<, const_iterator
set_voce_type::const_iterator i, ie; //const_iterator
i = set1.begin();
ie = set1.end();
set_voce_type set_iterators(i, ie); //set(Q b, Q e)
assert(set_iterators[0] == v1); //operator[]
assert(set_iterators[1] == v2);
assert(set_iterators[2] == v3);
assert(set_iterators[3] == v4);
set2 = set1; //operator=
std::cout << set2 << std::endl;
try{
set1.remove(v1); //head deletion
set1.remove(v5); //tail deletion
set1.remove(v3); //middle deletion
set1.remove(voce("Piero", "Neri", "98966333")); //not_existing_exception
}catch(not_existing_exception){
std::cout << "not_existing_exception CATCHED" << std::endl;
};
set1.clear_set(); //clear_set()
assert(set1.size() == 0); //size()
set_voce_type filtered;
filtered = filter_out(set2, voce_surname_Rossi()); //filter_out
assert(filtered[0] == v4);
assert(filtered[1] == v5);
assert(filtered.size() == 2);
set1.add(voce("Mattia", "Bianchi", "1111111"));
set1.add(voce("Leonardo", "Bianchi", "2222222"));
set1.add(voce("Fabio", "Bianchi", "3333333"));
set_voce_type concat;
concat = set1 + set2; //operator+
assert(concat[1] == voce("Leonardo", "Bianchi", "2222222"));
assert(concat[4] == v2);
assert(concat[7] == v5);
assert(concat.size() == 8);
std::cout << "test_voce() OK" << std::endl;
std::cout << "---------------------" << std::endl;
}
int main(void){
test_int();
test_string();
test_voce();
return 0;
}