-
Notifications
You must be signed in to change notification settings - Fork 0
/
almacenamiento.c
355 lines (334 loc) · 7.61 KB
/
almacenamiento.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
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
#include "almacenamiento.h"
#ifndef STD
#define STD
#include <stdio.h>
#include <string.h>
#define TRUE 1
#define FALSE 0
#define TAMAX 10
#endif
/*INICIO Funciones y Procedimientos referentes al tipo hashLote*/
Segmento *newSegmento() {
Segmento *nuevo = (Segmento *) malloc(sizeof(Segmento));
if (nuevo == NULL) {
fprintf(stderr, "newSegmento: Error al hacer la reserva de memoria!!!\n");
exit(1);
} else {
nuevo->ini = 1;
nuevo->size = 0;
nuevo->ant = NULL;
nuevo->sig = NULL;
register int i;
for (i = 0 ; i < TAMAX; i++){
nuevo->trozo[i] = 0;
}
return nuevo;
}
}
HashLote *newHashLote(){
HashLote *nuevo = (HashLote *) malloc(sizeof(HashLote));
if (nuevo) {
nuevo->head = newSegmento();
nuevo->tail = nuevo->head;
return nuevo;
} else {
fprintf(stderr, "newHashLote: Error al hacer la reserva de memoria!!!\n");
exit(1);
}
}
int calcRango (int pos) {
int mod = pos % TAMAX;
if (mod == 0) {
return (pos - (TAMAX - 1));
} else if (mod == 1) {
return pos;
} else {
return pos - ((pos % TAMAX) - 1);
}
}
int calcPosicion (int pos) {
int mod = (pos % TAMAX);
if (mod == 0) {
return (TAMAX - 1);
} else {
return (mod - 1);
}
}
int insertar (HashLote *lote, int pos, int num) {
Segmento *inUse = lote->head;
while (inUse) {
int fin = inUse->ini + (TAMAX - 1);
if ( inUse->ini <= pos && pos <= fin ) {
break;
} else if ( fin < pos && inUse->sig == NULL ) {
Segmento *nuevo = newSegmento();
nuevo->ini = calcRango(pos);
inUse->sig = nuevo;
nuevo->ant = inUse;
inUse = lote->tail = nuevo;
nuevo = NULL;
break;
} else if (pos < inUse->ini && inUse->ant != NULL) {
Segmento *nuevo = newSegmento();
nuevo->ini = calcRango(pos);
inUse->ant->sig = nuevo;
nuevo->ant = inUse->ant;
inUse->ant = nuevo;
nuevo->sig = inUse;
inUse = nuevo;
nuevo = NULL;
break;
}
inUse = inUse->sig;
}
int newPos = calcPosicion(pos);
if (inUse->trozo[newPos] == 0) {
/* SE TRATA DE UNA INSERCIÓN */
lote->size++;
inUse->size++;
} else {
if (num == 0) {
/* SE TRATA DE UNA ELIMINACIÓN */
lote->size--;
inUse->size--;
}
}
inUse->trozo[newPos] = num;
if (inUse->size == 0) {
/* EL SEGMENTO ESTÁ VACÍO, ES INÚTIL, SE LIBERA */
seg_liberar(lote,inUse);
}
inUse = NULL;
return 0;
}
int get(HashLote *lote, int pos){
Segmento *inUse = lote->head;
while (inUse) {
int fin = inUse->ini + (TAMAX - 1);
if ( inUse->ini <= pos && pos <= fin ) {
int newPos = calcPosicion(pos);
return inUse->trozo[newPos];
} else if ( fin < pos && inUse->sig == NULL ) {
return 0;
} else if (pos < inUse->ini && inUse->ant != NULL) {
return 0;
}
inUse = inUse->sig;
}
}
int contiene(HashLote *lote, int pos){
Segmento *inUse = lote->head;
while (inUse) {
int fin = inUse->ini + (TAMAX - 1);
if ( inUse->ini <= pos && pos <= fin ) {
int newPos = calcPosicion(pos);
if (inUse->trozo[newPos] != 0) {
return 1;
} else {
return 0;
}
} else if ( fin < pos && inUse->sig == NULL ) {
return 0;
} else if (pos < inUse->ini && inUse->ant != NULL) {
return 0;
}
inUse = inUse->sig;
}
}
void hl_print(HashLote lote){
Segmento *inUse = lote.head;
printf("|-------|---------------|\n");
printf("| pos | contenido |\n");
printf("|-------|---------------|\n");
while (inUse) {
register int i;
for (i = 0; i < TAMAX; i++){
if (inUse->trozo[i] != 0) {
int pos = (inUse->ini + i);
printf("| %d\t| %d\t\t|\n",pos,inUse->trozo[i]);
}
}
inUse = inUse->sig;
}
printf("|_______|_______________|\n");
}
int hl_liberar(HashLote *lote){
Segmento *inUse = lote->head;
Segmento *siguiente = inUse->sig;
while (inUse) {
seg_liberar(lote,inUse);
inUse = siguiente;
if (inUse){
siguiente = inUse->sig;
}
}
lote->head = lote->tail = NULL;
return 0;
}
int seg_liberar(HashLote *lote, Segmento *seg){
Segmento *siguiente = seg->sig;
Segmento *anterior = seg->ant;
if (siguiente) {
siguiente->ant = anterior;
} else {
lote->tail = seg->ant;
}
if (anterior) {
anterior->sig = siguiente;
} else {
lote->head = seg->sig;
}
seg->ant = seg->sig = NULL;
free(seg);
seg = NULL;
return 0;
}
int *hltoArray(HashLote *lote){
Segmento *inUse = lote->head;
int *arreglo = (int *) malloc( lote->size * sizeof(int));
int j = 0;
while (inUse) {
register int i;
for (i = 0; i < TAMAX; i++){
if (inUse->trozo[i] != 0) {
arreglo[j] = inUse->trozo[i];
j++;
}
}
inUse = inUse->sig;
}
return arreglo;
}
int *posToArray(HashLote *lote){
Segmento *inUse = lote->head;
int *arreglo = (int *) malloc( lote->size * sizeof(int));
int j = 0;
while (inUse) {
register int i;
for (i = 0; i < TAMAX; i++){
if (inUse->trozo[i] != 0) {
arreglo[j] = i + inUse->ini;
j++;
}
}
inUse = inUse->sig;
}
return arreglo;
}
/*FIN Funciones y Procedimientos referentes al tipo HashLote*/
/*INICIO Funciones y Procedimientos referentes al tipo Lista*/
CajitaInt *newCajitaInt() {
CajitaInt *nueva = (CajitaInt *) malloc(sizeof(CajitaInt));
if (nueva != NULL) {
nueva->sig = nueva->ant = NULL;
return nueva;
} else {
fprintf(stderr, "newCajitaInt: Error al hacer la reserva de memoria!!!\n");
exit(1);
}
}
ListaInt *newListaInt() {
ListaInt *nueva = (ListaInt *) malloc(sizeof(ListaInt));
if (nueva != NULL) {
nueva->head = nueva->tail = NULL;
nueva->size = 0;
return nueva;
} else {
fprintf(stderr, "newListaInt: Error al hacer la reserva de memoria!!!\n");
exit(1);
}
}
int add(ListaInt *list, int elem) {
CajitaInt *nueva = newCajitaInt();
nueva->data = elem;
if (list->head != NULL && list->tail != NULL) {
list->tail->sig = nueva;
nueva->ant = list->tail;
nueva->sig = NULL;
list->tail = nueva;
} else {
list->head = list->tail = nueva;
}
list->size++;
nueva = NULL;
return 0;
}
void delete(ListaInt *list, int elem){
CajitaInt *aux = list->head;
while (aux) {
if (aux->data == elem) {
if (list->size == 1) {
free(aux);
aux = list->head = list->tail = NULL;
return;
}
if (aux->ant) {
aux->ant->sig = aux->sig;
} else {
list->head = aux->sig;
}
if (aux->sig) {
aux->sig->ant = aux->ant;
} else {
list->tail = aux->ant;
}
aux->ant = aux->sig = NULL;
free(aux);
aux = NULL;
list->size--;
return;
}
aux = aux->sig;
}
return;
}
int isIn(ListaInt *list, int elem){
CajitaInt *aux = list->head;
while (aux) {
if (aux->data == elem) {
return TRUE;
}
aux = aux->sig;
}
return FALSE;
}
void li_print(ListaInt lista){
CajitaInt *aux = lista.head;
printf("|-------|\n");
while (aux) {
printf("|%d\t|\n", aux->data);
aux = aux->sig;
}
printf("|_______|\n");
}
int li_liberar(ListaInt *list){
CajitaInt *aux = list->head;
CajitaInt *siguiente;
while (aux) {
if (list->size == 1) {
free(aux);
aux = list->head = list->tail = NULL;
return;
}
if (aux->ant) {
aux->ant->sig = aux->sig;
} else {
list->head = aux->sig;
}
if (aux->sig) {
aux->sig->ant = aux->ant;
} else {
list->tail = aux->ant;
}
siguiente = aux->sig;
aux->ant = aux->sig = NULL;
free(aux);
aux = NULL;
list->size--;
aux = siguiente;
siguiente = NULL;
}
aux = siguiente = NULL;
return;
}
/*FIN Funciones y Procedimientos referentes al tipo Lista*/