-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
336 lines (280 loc) · 9.17 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
#include <iostream>
#include <vector>
#include <random>
#include <limits>
#include <chrono>
#include <fstream> // tsv
#include <filesystem> // tsv C++17
using namespace std;
using namespace std::chrono;
namespace fs = std::filesystem;
typedef long long ll;
const int PAGE_SIZE = 1024;
const int maxElementosPorPagina = PAGE_SIZE / sizeof(ll);
// Función de Hashing aleatorio (no determinista)
ll h(ll y) {
std::random_device rd;
std::mt19937_64 gen(y);
std::uniform_int_distribution<ll> dis(0, std::numeric_limits<ll>::max());
return dis(gen);
}
// Estructura para las métricas del experimento
struct Metrics {
double costo_promedio;
double porcentaje_llenado;
ll io_count;
ll duracion_segundos;
};
// Estructura para una página
struct Page {
vector<ll> elementos;
Page* next;
Page() : next(nullptr) {}
};
// Estructura para cada entrada de la tabla de hash
struct Entry {
Page* head; // Puntero a la primera página
Entry() : head(nullptr) {}
};
// Clase para la tabla de hashing
class TablaHashing {
private:
vector<Entry> table; // Tabla de hash
ll p; // Cantidad de páginas actuales
ll t; // Parámetro para determinar la expansión
ll count; // Total de accesos
ll C_MAX; // Costo promedio máximo permitido
ll io_count; // Contador de I/Os
bool buscar_en_pagina(Page* pag, ll y) {
//io_count++;
for (const ll& elem : pag->elementos) {
if (elem == y) {
return true;
}
}
return false;
}
void insertar_en_pagina(ll idPage, ll valor) {
if (table[idPage].head == nullptr) {
table[idPage].head = new Page();
io_count++;
}
Page* pag = table[idPage].head;
while (pag != nullptr) {
count++; // Contar acceso
//io_count++;
if (buscar_en_pagina(pag, valor)) { //hace un io count
return; // Elemento ya existe
}
if (pag->elementos.size() < maxElementosPorPagina) {
pag->elementos.push_back(valor);
io_count++;
return;
}
// Si la página está llena, ir a la siguiente
if (pag->next == nullptr) {
pag->next = new Page();
io_count++;
}
pag = pag->next; // Mover a la siguiente página
}
}
public:
TablaHashing(ll MAX_ACCESOS) : p(1), t(0), count(0), C_MAX(MAX_ACCESOS), io_count(0) {
table.resize(p);
}
~TablaHashing() {
for (auto& entry : table) {
Page* current = entry.head;
while (current != nullptr) {
Page* temp = current->next;
delete current;
current = temp;
}
}
}
void insert(ll valor) {
ll k = h(valor) % (1LL << (t + 1));
if (k < p) {
insertar_en_pagina(k, valor);
} else {
insertar_en_pagina(k - (1LL << t), valor);
}
// Evaluar el costo promedio
double costoPromedio = static_cast<double>(count) / p;
if (costoPromedio > C_MAX) {
expandir();
}
}
bool buscar(ll y) {
io_count++;
for (int i = 0; i < p; i++) {
Page* pag = table[i].head;
while (pag != nullptr) {
if (buscar_en_pagina(pag, y)) {
return true;
}
pag = pag->next;
}
}
return false;
}
void compactar(ll idPage) {
Page* current = table[idPage].head;
while (current != nullptr) {
current->elementos.clear(); // Limpia los elementos
current = current->next;
}
}
void expandir() {
table.push_back(Entry());
ll p_anterior = p;
p++;
if (p == (1LL << (t + 1))) {
t++;
}
ll idx = p-1;
Page* pag_anterior = table[idx].head;
// Mover elementos de la página anterior a la nueva
Page* current = pag_anterior;
while (current != nullptr) {
for (ll y : current->elementos) {
ll k = h(y) % (1LL << (t + 1));
if (k == p_anterior) {
table.back().head->elementos.push_back(y);
} else {
insertar_en_pagina(k, y);
}
}
current = current->next;
}
// Compactar la página anterior
compactar(idx);
}
double obtener_costo_promedio() const {
return static_cast<double>(count) / p;
}
double porcentaje_llenado() const {
ll total_elementos = 0;
ll total_paginas = 0;
for (const Entry& entry : table) {
Page* pag = entry.head;
while (pag != nullptr) {
total_elementos += pag->elementos.size();
total_paginas++;
pag = pag->next;
}
}
return (total_paginas == 0) ? 0 : (static_cast<double>(total_elementos) / (total_paginas * maxElementosPorPagina)) * 100.0;
}
ll get_io_count() const {
return io_count;
}
void print() {
cout << "Tabla Hash:\n";
for (int i = 0; i < table.size(); i++) {
cout << i << " -> ";
if (table[i].head == nullptr) {
cout << "[]\n";
continue;
}
Page* pag = table[i].head;
while (pag != nullptr) {
for (ll elem : pag->elementos) {
cout << elem << " ";
}
pag = pag->next;
cout << (pag ? " -> " : "");
}
cout << "\n";
}
}
};
void experimento(ll C_MAX, int N)
{
TablaHashing t(C_MAX);
// Generar N elementos aleatorios
random_device rd;
mt19937_64 gen(rd());
uniform_int_distribution<ll> dis(1, numeric_limits<long long>::max());
for (int i = 0; i < N; i++)
{
ll valor = dis(gen);
t.insert(valor);
}
// Imprimir la tabla de hash
t.print();
}
Metrics experimento2(ll C_MAX, ll N)
{
TablaHashing t(C_MAX);
// Generar N elementos aleatorios entre 1 y 2^63-1
random_device rd;
mt19937_64 gen(rd());
uniform_int_distribution<ll> dis(1, numeric_limits<long long>::max());
// Insertar los N elementos
for (ll i = 0; i < N; i++)
{
ll valor = dis(gen);
t.insert(valor);
// Muestra el progreso
if (i % (N / 10) == 0) {
cout << "Progreso: " << (i * 100) / N << "%\n";
}
}
// Resultados del experimento
double costo_promedio = t.obtener_costo_promedio();
double porcentaje_llenado = t.porcentaje_llenado();
cout << "Resultados del experimento con N = " << N << " elementos:\n";
cout << "Costo promedio real de insercion: " << costo_promedio << "\n";
cout << "Porcentaje de llenado de las paginas: " << porcentaje_llenado << "%\n";
cout << "Número total de I/Os: " << t.get_io_count() << "\n";
// Resultados del experimento
Metrics metricas;
metricas.costo_promedio = t.obtener_costo_promedio();
metricas.porcentaje_llenado = t.porcentaje_llenado();
metricas.io_count = t.get_io_count();
return metricas;
}
Metrics medirDuracionExperimento(ll C_MAX, ll N) {
auto inicio = chrono::high_resolution_clock::now(); // Inicio del cronómetro
// Ejecutar el experimento 2
Metrics metricas = experimento2(C_MAX, N);
auto fin = chrono::high_resolution_clock::now(); // Fin del cronómetro
auto duracion = chrono::duration_cast<seconds>(fin - inicio); // Duración en segundos
auto minutos = chrono::duration_cast<minutes>(duracion);
auto segundos = chrono::duration_cast<seconds>(duracion - minutos);
cout << "Tiempo de ejecucion: " << minutos.count() << " minutos y " << segundos.count() << " segundos" << endl;
metricas.duracion_segundos = duracion.count();
return metricas;
}
int main() {
// Archivo log de creación
string filename = "experiments_data/data.tsv";
fs::path filepath = filename;
// Crear el directorio si no existe
fs::path dir = filepath.parent_path();
if (!fs::exists(dir)) {
fs::create_directories(dir);
}
// Abrir el archivo
ofstream data_tsv;
data_tsv.open(filename);
if (!data_tsv.is_open()) {
cerr << "Error al abrir el archivo " << filename << endl;
return 1;
}
data_tsv << "i\tN\tC_MAX\tcosto_promedio\tporcentaje_llenado\tio_count\tduracion_segundos\n"; // TSV Header
// Medir duración de experimento2
for(int i=24; i < 25; i++){
ll N = 1LL << i;
ll C_MAX_values[] = {10, 100, 500, 750, 1024, 2056, 5000, 10000};
// experimento para 10, 100, 500, 750,1024, 2056, 5000 y 10000
for (ll C_MAX : C_MAX_values) {
Metrics metrics = medirDuracionExperimento(C_MAX, N);
data_tsv << i << "\t" << N << "\t" << C_MAX << "\t" << metrics.costo_promedio << "\t" << metrics.porcentaje_llenado << "\t" << metrics.io_count << "\t" << metrics.duracion_segundos << "\n";
}
}
data_tsv.close();
return 0;
}