-
Notifications
You must be signed in to change notification settings - Fork 0
/
cataleg.t
295 lines (261 loc) · 6.86 KB
/
cataleg.t
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
using namespace std;
/* Constructora. Crea un catàleg buit on numelems és el nombre
aproximat d'elements que com a màxim s'inseriran al catàleg. */
template <typename Valor>
cataleg<Valor>::cataleg(nat numelems) throw(error){
nat nombre_primer = numelems;
bool trobat = false;
while(not trobat){
if(es_primer(nombre_primer)) trobat = true;
else nombre_primer++;
}
_M = nombre_primer;
table = new node_hash*[_M];
for (int i = 0; i < _M; i++){
table[i] = NULL;
}
_quants = 0;
}
template <typename Valor>
bool cataleg<Valor>::es_primer(nat n){
//loop from 2 to n/2 to check for factors
for (nat i = 2; i <= n/2; i++){
if (n % i == 0) return false;
}
return true;
}
/* Constructora per còpia, assignació i destructora. */
template <typename Valor>
cataleg<Valor>::cataleg(const cataleg& c) throw(error){
for (int i = 0; i < _M; i++){
esborra_nodes(table[i]);
}
for (int i = 0; i < c._M; i++){
table[i] = copia_nodes(c.table[i]);
}
_M = c._M;
_quants = c._quants;
}
template <typename Valor>
typename cataleg<Valor>::node_hash* cataleg<Valor>::copia_nodes(node_hash* m) {
/* Pre: cert */
/* Post: si m és NULL, el resultat és NULL; sinó,
el resultat apunta al primer node d'un arbre binari
de nodes que són còpia de l'arbre apuntat per m */
node_hash* n;
if (m == NULL) n = NULL;
else {
n = new node_hash;
try {
n->_c = m->_c;
n->_v = m->_v;
n->_seg = copia_nodes(m->_seg);
} catch(...) {
delete n;
throw;
}
}
return n;
};
template <typename Valor>
void cataleg<Valor>::esborra_nodes(node_hash* m) {
/* Pre: cert */
/* Post: no fa res si m és NULL, sinó allibera
espai dels nodes de l'arbre binari apuntat per m */
if (m != NULL) {
esborra_nodes(m->_seg);
delete m;
}
};
template <typename Valor>
cataleg<Valor>& cataleg<Valor>::operator=(const cataleg& c) throw(error){
if(&c != this){
for (int i = 0; i < _M; i++){
esborra_nodes(table[i]);
}
for (int i = 0; i < c._M; i++){
table[i] = copia_nodes(c.table[i]);
}
_M = c._M;
_quants = c._quants;
}
return *this;
}
template <typename Valor>
cataleg<Valor>::~cataleg() throw() {
for (int i = 0; i < _M; i++){
esborra_nodes(table[i]);
}
_quants = 0;
}
/* Mètode modificador. Insereix el parell <clau, valor> indicat.
En cas que la clau k ja existeixi en el catàleg actualitza el valor
associat. Genera un error en cas que la clau sigui l'string buit. */
template <typename Valor>
void cataleg<Valor>::assig(const string &k, const Valor &v) throw(error){
if(k == "" || k == " ") throw error(ClauStringBuit);
int x = util::hash(k) % _M;
node_hash *p = table[x];
bool found = false;
while (p != NULL and not found) {
if (p->_c == k) found = true;
else p = p->_seg;
}
// Només canviem el valor associat
if (found) p->_v = v;
else {
// Cal crear un nou node i l'afegim al principi
node_hash* aux = new node_hash;
aux->_c = k;
aux->_v = v;
aux->_seg = table[x];
// table[x] = new node_hash(k, v, table[x]);
table[x] = aux;
++_quants;
}
if(_quants / _M > .90){
// Fem la redispersió
redispersio();
}
}
/*
PRE
POST
*/
template <typename Valor>
bool cataleg<Valor>::aa_existeix(node_hash *m, const string &k){
bool exist = false;
while (m != NULL and not exist) {
if (m->_c == k) {
exist = true;
}
else {
m = m->_seg;
}
}
return exist;
}
/* Retorna true si i només si la clau k existeix dins del catàleg; false
en cas contrari. */
template <typename Valor>
bool cataleg<Valor>::existeix(const string &k) const throw() {
if(_M > 0){
int i = util::hash(k) % _M;
return aa_existeix(table[i], k);
}
return false;
}
template <typename Valor>
Valor cataleg<Valor>::quin(node_hash *m, const string &k){
bool exist = false;
while (m != NULL and not exist) {
if (m->_c == k) {
exist = true;
}
else {
m = m->_seg;
}
}
return m->_v;
}
/* Retorna el valor associat a la clau k; si no existeix cap parell amb
clau k llavors genera un error. Exemple:
cataleg<int> ct;
...
int n = ct["dia"]; */
template <typename Valor>
Valor cataleg<Valor>::operator[](const string &k) const throw(error) {
if(_M > 0){
int i = util::hash(k) % _M;
if(not aa_existeix(table[i], k)) throw error(ClauInexistent);
return quin(table[i], k);
// Look for it.
} else {
throw error(ClauInexistent);
}
}
/* Retorna el nombre d'elements que s'han inserit en el catàleg
fins aquest moment. */
template <typename Valor>
nat cataleg<Valor>::quants() const throw() {
return _quants;
}
/* Elimina del catàleg el parell que té com a clau k.
En cas que la clau k no existeixi en el catàleg genera un error. */
template <typename Valor>
void cataleg<Valor>::elimina(const string &k) throw(error) {
if(_M > 0){
int i = util::hash(k) % _M;
node_hash *p = table[i], *ant = NULL;
bool trobat = false;
while (p != NULL and not trobat) {
if (p->_c == k) {
trobat = true;
}
else {
ant = p;
p = p->_seg;
}
}
if (trobat) {
if (ant == NULL) {
table[i] = p->_seg; // Era el primer
}
else {
ant->_seg = p->_seg;
}
delete(p);
--_quants;
} else {
throw error(ClauInexistent);
}
} else {
throw error(ClauInexistent);
}
}
/*
void call_registry::redispersio(){
// nat mida_abans = _size;
nat mida_abans = _size;
_size = _size * 2 + 1;
node_hash **nova_taula = new node_hash*[_size]();
for(int i = 0; i < mida_abans; i++){
node_hash *p = _taula[i];
while(p != NULL){
node_hash *aux = p;
p = p->seg;
node_hash *&nou = nova_taula[funcio_hash(aux->_k)];
aux->seg = nou;
nou = aux;
}
}
// eliminem la _taula
delete[] _taula;
_taula = nova_taula;
}
*/
/*
PRE:
POST:
*/
template <typename Valor>
void cataleg<Valor>::redispersio(){
int antic = _M;
_M = _M * 2 + 1; //mantenim numero prim.
node_hash **nova_taula = new node_hash*[_M];
for (int i = 0; i < _M; ++i){
nova_taula[i] = NULL;
}
for (int i = 0; i < antic; i++){
node_hash *p = table[i];
while (p != NULL){
int x = util::hash(p->_c) % _M;
node_hash *aux = p->_seg;
p->_seg = nova_taula[x];
nova_taula[x] = p;
p = aux;
}
}
delete[] table;
table = nova_taula;
}