-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
423 lines (350 loc) · 11.4 KB
/
main.cpp
File metadata and controls
423 lines (350 loc) · 11.4 KB
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
#include "hashTable.hpp"
#include <fstream>
#include <sstream>
#include <string>
#include <ctime>
#include <vector>
#include <iostream>
#include <algorithm>
#include <iomanip>
using namespace std;
struct PerformanceResult
{
string method;
double loadFactor;
double insertTime;
double searchTime;
double deleteTime;
double totalTime;
PerformanceResult(string m, double lf, double it, double st, double dt)
: method(m), loadFactor(lf), insertTime(it), searchTime(st), deleteTime(dt)
{
totalTime = insertTime + searchTime + deleteTime;
}
};
// Comparison function for sorting
bool compareResults(const PerformanceResult &a, const PerformanceResult &b)
{
return a.totalTime < b.totalTime;
}
// Function to load CSV data into a vector
vector<int> loadCSV(const string &filename)
{
vector<int> numbers;
ifstream file(filename);
string value;
if (!file.is_open())
{
cout << "Error: Could not open file " << filename << endl;
return numbers;
}
while (getline(file, value, ','))
{
if (!value.empty())
{
numbers.push_back(stoi(value));
}
}
file.close();
return numbers;
}
// Test functions return PerformanceResult object
PerformanceResult testChainingLinkedList(HashTable &hash, vector<int> &data, double loadFactor, int tableSize)
{
int insertCount = 0;
int targetCount = static_cast<int>(tableSize * loadFactor);
clock_t startTime, endTime;
double insertTime = 0, searchTime = 0, deleteTime = 0;
vector<int> insertedValues;
// Insert phase
for (size_t i = 0; i < data.size() && insertCount < targetCount; ++i)
{
startTime = clock();
node *result = hash.chainingLinkedListInsert(data[i]);
endTime = clock();
if (result != NULL)
{
insertTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
insertCount++;
insertedValues.push_back(data[i]);
}
}
// Test operations
int testCount = 0;
while (testCount < 100 && !insertedValues.empty())
{
int testValue = insertedValues[rand() % insertedValues.size()];
startTime = clock();
hash.chainingLinkedListSearch(testValue);
endTime = clock();
searchTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
startTime = clock();
hash.chainingLinkedListDelete(testValue);
endTime = clock();
deleteTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
hash.chainingLinkedListInsert(testValue);
testCount++;
}
if (testCount > 0)
{
insertTime /= testCount;
searchTime /= testCount;
deleteTime /= testCount;
}
return PerformanceResult("Chaining-LinkedList", loadFactor, insertTime, searchTime, deleteTime);
}
PerformanceResult testChainingBST(HashTable &hash, vector<int> &data, double loadFactor, int tableSize)
{
int insertCount = 0;
int targetCount = static_cast<int>(tableSize * loadFactor);
clock_t startTime, endTime;
double insertTime = 0, searchTime = 0, deleteTime = 0;
vector<int> insertedValues;
for (size_t i = 0; i < data.size() && insertCount < targetCount; ++i)
{
startTime = clock();
node *result = hash.chainingBSTInsert(data[i]);
endTime = clock();
if (result != NULL)
{
insertTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
insertCount++;
insertedValues.push_back(data[i]);
}
}
int testCount = 0;
while (testCount < 100 && !insertedValues.empty())
{
int testValue = insertedValues[rand() % insertedValues.size()];
startTime = clock();
hash.chainingBSTSearch(testValue);
endTime = clock();
searchTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
startTime = clock();
hash.chainingBSTDelete(testValue);
endTime = clock();
deleteTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
hash.chainingBSTInsert(testValue);
testCount++;
}
if (testCount > 0)
{
insertTime /= testCount;
searchTime /= testCount;
deleteTime /= testCount;
}
return PerformanceResult("Chaining-BST", loadFactor, insertTime, searchTime, deleteTime);
}
PerformanceResult testLinearProbing(HashTable &hash, vector<int> &data, double loadFactor, int tableSize)
{
int insertCount = 0;
int targetCount = static_cast<int>(tableSize * loadFactor);
clock_t startTime, endTime;
double insertTime = 0, searchTime = 0, deleteTime = 0;
vector<int> insertedValues;
for (size_t i = 0; i < data.size() && insertCount < targetCount; ++i)
{
startTime = clock();
int result = hash.linearProbeInsert(data[i]);
endTime = clock();
if (result == 1)
{
insertTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
insertCount++;
insertedValues.push_back(data[i]);
}
}
int testCount = 0;
while (testCount < 100 && !insertedValues.empty())
{
int testValue = insertedValues[rand() % insertedValues.size()];
startTime = clock();
hash.linearProbeSearch(testValue);
endTime = clock();
searchTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
startTime = clock();
hash.linearProbeDelete(testValue);
endTime = clock();
deleteTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
hash.linearProbeInsert(testValue);
testCount++;
}
if (testCount > 0)
{
insertTime /= testCount;
searchTime /= testCount;
deleteTime /= testCount;
}
return PerformanceResult("Linear-Probing", loadFactor, insertTime, searchTime, deleteTime);
}
PerformanceResult testCuckooHashing(HashTable &hash, vector<int> &data, double loadFactor, int tableSize)
{
int insertCount = 0;
int targetCount = static_cast<int>(tableSize * loadFactor);
clock_t startTime, endTime;
double insertTime = 0, searchTime = 0, deleteTime = 0;
vector<int> insertedValues;
for (size_t i = 0; i < data.size() && insertCount < targetCount; ++i)
{
startTime = clock();
int result = hash.cuckooHashingInsert(data[i]);
endTime = clock();
if (result >= 0)
{
insertTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
insertCount++;
insertedValues.push_back(data[i]);
}
}
int testCount = 0;
while (testCount < 100 && !insertedValues.empty())
{
int testValue = insertedValues[rand() % insertedValues.size()];
startTime = clock();
hash.cuckooHashingSearch(testValue);
endTime = clock();
searchTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
startTime = clock();
hash.cuckooHashingDelete(testValue);
endTime = clock();
deleteTime += (double)(endTime - startTime) / CLOCKS_PER_SEC;
hash.cuckooHashingInsert(testValue);
testCount++;
}
if (testCount > 0)
{
insertTime /= testCount;
searchTime /= testCount;
deleteTime /= testCount;
}
return PerformanceResult("Cuckoo-Hashing", loadFactor, insertTime, searchTime, deleteTime);
}
// Add these comparison functions at the top of the file, before printResults
bool compareByInsert(const PerformanceResult &a, const PerformanceResult &b)
{
return a.insertTime < b.insertTime;
}
bool compareBySearch(const PerformanceResult &a, const PerformanceResult &b)
{
return a.searchTime < b.searchTime;
}
bool compareByDelete(const PerformanceResult &a, const PerformanceResult &b)
{
return a.deleteTime < b.deleteTime;
}
void printResults(vector<PerformanceResult> &results, double loadFactor)
{
cout << "\n=========== Results for Load Factor " << fixed << setprecision(8) << loadFactor << " ===========\n"
<< endl;
cout << "All times are in seconds, averaged over 100 operations" << endl;
cout << "Clock resolution: " << (1.0 / CLOCKS_PER_SEC) << " seconds" << endl;
cout << "CLOCKS_PER_SEC: " << CLOCKS_PER_SEC << endl
<< endl;
// Create vectors for sorting by each operation
vector<PerformanceResult> insertSort = results;
vector<PerformanceResult> searchSort = results;
vector<PerformanceResult> deleteSort = results;
// Sort by each operation type using traditional comparison functions
sort(insertSort.begin(), insertSort.end(), compareByInsert);
sort(searchSort.begin(), searchSort.end(), compareBySearch);
sort(deleteSort.begin(), deleteSort.end(), compareByDelete);
sort(results.begin(), results.end(), compareResults); // Sort original by total time
// Print main results table
cout << left << setw(20) << "Method"
<< right
<< setw(20) << "Insert(sec)"
<< setw(20) << "Search(sec)"
<< setw(20) << "Delete(sec)"
<< setw(20) << "Total(sec)"
<< endl;
cout << string(100, '-') << endl;
// Calculate totals
double totalInsert = 0, totalSearch = 0, totalDelete = 0, grandTotal = 0;
for (size_t i = 0; i < results.size(); i++)
{
cout << left << setw(20) << results[i].method
<< right << fixed << setprecision(8)
<< setw(20) << results[i].insertTime
<< setw(20) << results[i].searchTime
<< setw(20) << results[i].deleteTime
<< setw(20) << results[i].totalTime
<< endl;
totalInsert += results[i].insertTime;
totalSearch += results[i].searchTime;
totalDelete += results[i].deleteTime;
grandTotal += results[i].totalTime;
cout << string(100, '-') << endl;
}
// Print totals
cout << left << setw(20) << "TOTAL TIME:"
<< right << fixed << setprecision(8)
<< setw(20) << totalInsert
<< setw(20) << totalSearch
<< setw(20) << totalDelete
<< setw(20) << grandTotal
<< "\n\n";
// Print rankings for each operation
cout << "\nFASTEST FOR EACH OPERATION:\n"
<< endl;
cout << "INSERT Rankings:" << endl;
cout << string(50, '-') << endl;
for (size_t i = 0; i < insertSort.size(); i++)
{
cout << "#" << (i + 1) << ": " << left << setw(20) << insertSort[i].method
<< fixed << setprecision(8) << insertSort[i].insertTime << " sec" << endl;
}
cout << "\nSEARCH Rankings:" << endl;
cout << string(50, '-') << endl;
for (size_t i = 0; i < searchSort.size(); i++)
{
cout << "#" << (i + 1) << ": " << left << setw(20) << searchSort[i].method
<< fixed << setprecision(8) << searchSort[i].searchTime << " sec" << endl;
}
cout << "\nDELETE Rankings:" << endl;
cout << string(50, '-') << endl;
for (size_t i = 0; i < deleteSort.size(); i++)
{
cout << "#" << (i + 1) << ": " << left << setw(20) << deleteSort[i].method
<< fixed << setprecision(8) << deleteSort[i].deleteTime << " sec" << endl;
}
cout << endl;
}
int main(int argc, char *argv[])
{
if (argc != 2)
{
cout << "Usage: " << argv[0] << " <input_file.csv>" << endl;
return 1;
}
srand(time(NULL));
vector<int> data = loadCSV(argv[1]);
if (data.empty())
{
cout << "No data loaded from file." << endl;
return 1;
}
cout << "Loaded " << data.size() << " numbers from CSV file." << endl;
const int TABLE_SIZE = 10009;
vector<double> loadFactors;
loadFactors.push_back(0.1);
loadFactors.push_back(0.2);
loadFactors.push_back(0.5);
loadFactors.push_back(0.7);
loadFactors.push_back(0.9);
// Test each load factor
for (size_t i = 0; i < loadFactors.size(); i++)
{
vector<PerformanceResult> results;
double loadFactor = loadFactors[i];
HashTable hashLL(TABLE_SIZE);
results.push_back(testChainingLinkedList(hashLL, data, loadFactor, TABLE_SIZE));
HashTable hashBST(TABLE_SIZE);
results.push_back(testChainingBST(hashBST, data, loadFactor, TABLE_SIZE));
HashTable hashLP(TABLE_SIZE);
results.push_back(testLinearProbing(hashLP, data, loadFactor, TABLE_SIZE));
HashTable hashCuckoo(TABLE_SIZE);
results.push_back(testCuckooHashing(hashCuckoo, data, loadFactor, TABLE_SIZE));
printResults(results, loadFactor);
}
return 0;
}