-
Notifications
You must be signed in to change notification settings - Fork 0
/
Estructura.cpp
333 lines (271 loc) · 8.59 KB
/
Estructura.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
#include <utility>
#include <iostream>
#include <limits>
#include "Estructura.h"
/*
* Implementacion de constructor de EstructuraArchivo
*/
EstructuraArchivo::EstructuraArchivo(string filename, long long M) : filename(std::move(filename)), M(M) {}
void EstructuraArchivo::add_nodo(Nodo *nodo) {
string new_line = nodo->como_linea();
if(!outfile.is_open()){
outfile.open(filename);
}
outfile << new_line << endl;
}
// Comparador que se basa en el metodo compare de Value
struct cmpByValueCompare {
bool operator()(const Value &a, const Value &b) const {
return Value::compare(a, b) == -1;
}
};
void EstructuraArchivo::merge(const string &atributo, long long l, long long m, long long r) {
long long i, j;
// se obtiene la cantidad de elementos por lado
long long n1 = m - l + 1;
long long n2 = r - m;
// archivos que representan el arreglo de la izquierda y derecha
fstream L(filename);
fstream R(filename);
// archivo de resultado
ofstream K("tempResult");
i = 0; // indice inicial del arreglo de la izquierda
j = 0; // indice inicial del arreglo de la derecha
// se posiciona en los lugares correspondientes del archivo
GoToLine(L, l);
GoToLine(R, m + 1);
string inputL, inputR;
// merge
while (i < n1 && j < n2) {
// se guarda posicion actual
streampos oldposL = L.tellg();
streampos oldposR = R.tellg();
// se leen las lineas
getline(L, inputL);
getline(R, inputR);
// se crean nodos
Nodo nodoL(inputL);
Nodo nodoR(inputR);
// se obtienen valores
Value valL = nodoL.mymap()[atributo];
Value valR = nodoR.mymap()[atributo];
if (Value::compare(valL, valR) <= 0) { // L[i] <= R[j]
K << inputL << endl; // arr[k] = L[i];
R.seekg(oldposR); // como R no avanza vuelve una linea
i++;
}
else {
K << inputR << endl; // arr[k] = R[j];
L.seekg(oldposL); // como L no avanza vuelve una linea
j++;
}
}
// se copian los elementos restantes en L si quedan
while (i < n1) {
getline(L, inputL);
K << inputL << endl;
i++;
}
// se copian los elementos restantes en R si quedan
while (j < n2) {
getline(R, inputR);
K << inputR << endl;
j++;
}
// se copia el resultado en el archivo original
string output;
fstream file(filename);
ifstream res("tempResult");
GoToLine(file, l);
getline(res, output);
while (!output.empty()) {
file << output << endl;
getline(res, output);
}
// se borra el archivo temporal
remove("tempResult");
}
void EstructuraArchivo::ordenarTrozo(const string &atributo) {
// si no se han abierto los archivos se abren
if (!infile.is_open())
infile.open(filename);
if (!outfile.is_open())
outfile.open(filename);
long long i = 0;
string line;
// mapa con los nodos, el cual se ordena cada vez que se inserta un elemento
map<Value, Nodo*, cmpByValueCompare> nodos;
while (i < M) {
getline(infile, line);
if (line.empty()) break;
Nodo *n = new Nodo(line);
map<string, Value> mapa = n->mymap();
Value v;
v = mapa[atributo];
nodos[v] = n; // la llave es el atributo por el cual se ordena
i++;
}
// se escriben los nodos en el archivo
for (auto &nodo : nodos) {
outfile << nodo.second->como_linea() << endl;
}
}
void EstructuraArchivo::mergeSort(const string &atributo, long long l, long long r, bool first) {
if (first)
this->outfile.seekp(0, std::ofstream::beg);
if (r - l > M) { // si el pedazo a ordenar es mayor a M
long long m = (l + (r - l) / 2);
// se ordenan ambas mitades
mergeSort(atributo, l, m, false);
mergeSort(atributo, m + 1, r, false);
merge(atributo, l, m, r);
} else {
ordenarTrozo(atributo);
}
}
void EstructuraArchivo::ordenar(const string &atributo, long long size) {
mergeSort(atributo, 0, size - 1, true);
}
fstream &EstructuraArchivo::GoToLine(fstream &file, long long num) {
file.seekg(ios::beg);
for (int i = 0; i < num; ++i) {
file.ignore(numeric_limits<streamsize>::max(), '\n');
}
return file;
}
EstructuraBtree::EstructuraBtree(string atr): root(NULL),atributo(atr) {}
void EstructuraBtree::ordenar(const string &atributo , long long M){}
Nodo * EstructuraBtree::buscar(Nodo* nodo){
return (root == NULL)? NULL : root->buscar(nodo);
}
NodoBtree::NodoBtree(int _B, bool _hoja, string _atributo)
{
// Copy the given minimum degree and leaf property
B=_B;
hoja = _hoja;
llaves = (Nodo **)malloc(sizeof(Nodo*)*((B-1)/2));
hijos = new NodoBtree *[((B-1)/2)+1];
n = 0;
atributo= _atributo;
}
void EstructuraBtree::add_nodo(Nodo* nodo)
{
// si el arbol esta vacío
if (root == NULL)
{
root = new NodoBtree(B, true, atributo);
root->llaves[0] = nodo; // inserta llave
root->n = 1; // hay 1 llave
}
// el arbol no esta vacio
else
{
// la raiz esta llena tiene B-1/2 llaves
if (root->n == (B-1)/2)
{
NodoBtree *s = new NodoBtree(B, false, atributo);
// la raiz antigua es hija de la nueva
s->hijos[0] = root;
s->splitChild(0, root);
Value newval= (nodo->mymap()).find(atributo)->second;
Value thisval= (s->llaves[0])->mymap().find(atributo)->second;
int i = 0;
//thisval < newval
if (thisval.compare(thisval,newval)!=1)
i++;
s->hijos[i]->insertar(nodo);
root = s; // se cambia la raiz
}
else
root->insertar(nodo);
}
}
//se inserta una nueva llave en este nodo, que no esta lleno
void NodoBtree::insertar(Nodo * nodo)
{
Value newval= nodo->mymap().find(atributo)->second;
int i = n-1;
if (hoja)
{
//encuentra la posicion de la nueva llave y realoca a los mayores
while (i >= 0)
{
Value thisval= llaves[i]->mymap().find(atributo)->second;
if(thisval.compare(thisval, newval)!=1)
break;
llaves[i+1] = llaves[i];
i--;
}
//se inserta la nueva llave en la posicion encontrada
llaves[i+1] = nodo;
n = n+1;
}
else
{
// Find the child which is going to have the new key
while (i >= 0)
{
Value thisval= llaves[i]->mymap().find(atributo)->second;
if(thisval.compare(thisval, newval)!=1)
break;
i--;
}
// verificar si el hijo está lleno
if (hijos[i+1]->n == (B-1)/2)
{
splitChild(i+1, hijos[i+1]);
Value thisval= llaves[i+1]->mymap().find(atributo)->second;
if (thisval.compare(thisval,newval)!=1)
i++;
}
hijos[i+1]->insertar(nodo);
}
}
void NodoBtree::splitChild(int i, NodoBtree *y)
{
//un nuevo nodo guarda la mitad-1 de las llaves
NodoBtree *z = new NodoBtree(y->B, y->hoja, atributo);
z->n = (B -2)/4;
// Copy the last (t-1) keys of y to z
for (int j = 0; j < (B -2)/4; j++)
z->llaves[j] = y->llaves[j+(B /4)];
// Copy the last t children of y to z
if (!y->hoja)
{
for (int j = 0; j < (B/4); j++)
z->hijos[j] = y->hijos[j+(B/4)];
}
// Reduce the number of keys in y
y->n = (B -2)/4;
// se crea espacio para el nuevo hijo
for (int j = n; j >= i+1; j--)
hijos[j+1] = hijos[j];
hijos[i+1] = z;
// A key of y will move to this node. Find location of
// new key and move all greater keys one space ahead
for (int j = n-1; j >= i; j--)
llaves[j+1] = llaves[j];
// Copy the middle key of y to this node
llaves[i] = y->llaves[(B -2)/4];
n = n + 1;
}
Nodo* NodoBtree::buscar(Nodo * nodo)
{
Value newval= nodo->mymap().find(atributo)->second;
//buscar la primera llave mayor o igual al nodo
int i = 0;
while (i < n){
Value thisval= llaves[i]->mymap().find(atributo)->second;
//newval>thisval
if(Value::compare(newval,thisval)!=1){
break;
}
i++;
}
if ((llaves[i]->equal(nodo))==true){
return llaves[i];
}
else if (hoja == true){
return NULL; }
return hijos[i]->buscar(nodo);
}