-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmark.cpp
435 lines (342 loc) · 9.26 KB
/
benchmark.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
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
424
425
426
427
428
429
430
431
432
433
434
#include "heap.h"
#include <cstdio>
#include <ctime>
// C++ program to demonstrate the use of priority_queue
#include <iostream>
#include <queue>
#include "arrayHeap.h"
#define RUN_ARRAY_IMPLEMENTATION 1
#define RUN_VARIANTY_IMPLEMENTATION 1
#define RUN_PRIORITY_QUEUE_IMPLEMENTATION 1
#define BENCHMARK_ROUNDS 1'000'000
#define PROB 0.7 // Probability of pushing
using namespace std;
typedef struct testSet
{
vector<int> inserts;
vector<uint8_t> push_pop;
}testSet;
void initRand()
{
srand(time(0));
}
int genRandInt(int min, int max)
{
return rand() % (max - min + 1) + min;
}
float genRandFloat(float min, float max)
{
return (float)rand() / RAND_MAX * (max - min) + min;
}
/* Continuously push first, then continously pop*/
uint8_t test_1(int rounds, int min, int max)
{
int maxSize = 10;
int *arrHeap = (int *)malloc(maxSize * sizeof(int));
int size = 0;
int arrHeapres = 0;
priority_queue<int> pq;
bRootNode* root = NULL;
popHeapResult res;
for (int a = 0 ; a < rounds ; a++)
{
int rand_num = genRandInt(min, max);
root = pushHeap(root, rand_num, true);
pq.push(rand_num);
arrHeap = pushArrayHeap(rand_num, arrHeap, &size, &maxSize);
if (arrHeap == NULL)
{
printf("Error : Unable to allocate enough memory\n");
}
}
// not checking if heap is empty as no.of insertions == no.of pops == rounds
for (int a = 0 ; a < rounds; a++)
{
arrHeapres = popArrayHeap(arrHeap, &size);
res = popHeap(root, true);
if (res.result == 0)
{
printf("Unexpected from heap\n");
free(arrHeap);
return -1;
}
else
{
if (res.data != pq.top())
{
printf("heap - FAILED\n");
free(arrHeap);
return 0;
}
if (pq.top() != arrHeapres)
{
printf("arrHeap - FAILED\n");
free(arrHeap);
return 0;
}
pq.pop();
}
}
free(arrHeap);
// destroybTree((bNode *)root);
return 1;
}
/* Push and pop randomly*/
uint8_t test_2(int rounds, int min, int max)
{
int maxSize = 10;
int *arrHeap = (int *)malloc(maxSize * sizeof(int));
int size = 0;
int arrHeapres = 0;
priority_queue<int> pq;
bRootNode* root = NULL;
popHeapResult res;
for (int a = 0 ; a < rounds; a++)
{
uint8_t push_pop = genRandInt(0,1);
if (push_pop == 0 )
{
int rand_num = genRandInt(min, max);
root = pushHeap(root, rand_num, true);
arrHeap = pushArrayHeap(rand_num, arrHeap, &size, &maxSize);
pq.push(rand_num);
// Uncomment the below line and comment the line above pq.push, it fials for some reason, idk why
// arrHeap = pushArrayHeap(rand_num, arrHeap, &size, &maxSize);
if (arrHeap == NULL)
{
printf("Error : Unable to allocate enough memory\n");
}
}
else
{
if (root != NULL)
{
res = popHeap(root, true);
if (res.result == 0)
{
printf("Unexpected from heap\n");
free(arrHeap);
return -1;
}
else
{
arrHeapres = popArrayHeap(arrHeap, &size);
if (pq.top() != arrHeapres)
{
printf("arrHeap Failed\n");
return 0;
}
if (res.data != pq.top())
{
printf("heap Failed\n");
return 0;
}
if (res.result == 2)
{
root = NULL;
}
pq.pop();
}
}
else if ( !pq.empty() )
{
printf("heap failed, supposed to be empty\n");
return -1;
}
}
}
return 1;
}
int no_of_pushes = 0;
testSet genTestSet(int rounds, int max, int min)
{
testSet res;
while (rounds != 0)
{
if (genRandFloat(0.0, 1.0) < PROB)
{
no_of_pushes++;
res.inserts.push_back(genRandInt(min, max));
res.push_pop.push_back(0);
}
else
{
res.push_pop.push_back(1);
}
rounds--;
}
return res;
}
void benchmark_1(int rounds, int min, int max)
{
bRootNode* root = NULL;
priority_queue<int> pq;
int *tSet = (int *)malloc(rounds * sizeof(int));
int maxSize = 10;
int size = 0;
int *arrHeap = (int *)malloc(maxSize * sizeof(int));
clock_t end, variant_time, pqTime, arrHeapTime;
for (int a = 0 ; a < rounds ; a++)
{
tSet[a] = genRandInt(min, max);
}
// start timer here
variant_time = clock();
for (int a = 0 ; a < rounds ; a++)
{
root = pushHeap(root, tSet[a], true);
}
// end timer here
end = clock();
variant_time = end - variant_time;
pqTime = clock();
for (int a = 0 ; a < rounds ; a++)
{
pq.push(tSet[a]);
}
end = clock();
pqTime = end - pqTime;
arrHeapTime = clock();
for (int a = 0 ; a < rounds ; a++)
{
arrHeap = pushArrayHeap(tSet[a], arrHeap, &size, &maxSize);
}
end = clock();
arrHeapTime = end - arrHeapTime;
free(tSet);
printf("Insertions time for %d rounds : \n", rounds);
printf("pqTime : %lf\n",(double)pqTime / CLOCKS_PER_SEC);
printf("arrHeapTime : %lf\n", (double)arrHeapTime / CLOCKS_PER_SEC);
printf("variant_time : %lf\n\n", (double)variant_time / CLOCKS_PER_SEC);
variant_time = clock();
for (int a = 0 ; a < rounds ; a++)
{
popHeap(root, true);
}
end = clock();
variant_time = end - variant_time;
pqTime = clock();
for (int a = 0 ; a < rounds ; a++)
{
pq.pop();
}
end = clock();
pqTime = end - pqTime;
arrHeapTime = clock();
for (int a = 0 ; a < rounds ; a++)
{
popArrayHeap(arrHeap, &size);
}
end = clock();
arrHeapTime = end - arrHeapTime;
printf("Pops time for %d rounds : \n", rounds);
printf("pqTime : %lf\n",(double)pqTime / CLOCKS_PER_SEC);
printf("arrHeapTime : %lf\n", (double)arrHeapTime / CLOCKS_PER_SEC);
printf("variant_time : %lf\n\n", (double)variant_time / CLOCKS_PER_SEC);
}
void benchmark_2(int rounds, int min, int max)
{
bRootNode* root = NULL;
priority_queue<int> pq;
int maxSize = 10;
int size = 0;
int *arrHeap = (int *)malloc(maxSize * sizeof(int));
int index = 0;
testSet tSet = genTestSet(rounds, min, max);
printf("No.of pushes : %d\n", no_of_pushes);
printf("No of pops : %d\n\n", rounds - no_of_pushes);
clock_t end, variant_time, pqTime, arrHeapTime;
// start timer here
variant_time = clock();
for (int a = 0 ; a < rounds ; a++)
{
if (tSet.push_pop[a] == 0)
{
root = pushHeap(root, tSet.inserts[index], true);
index++;
}
else
{
if (root != NULL)
{
if(popHeap(root, true).result == 2)
{
root = NULL;
}
}
}
}
// end timer here
end = clock();
variant_time = end - variant_time;
index = 0;
pqTime = clock();
for (int a = 0 ; a < rounds ; a++)
{
if (tSet.push_pop[a] == 0)
{
pq.push(tSet.inserts[index]);
index++;
}
else
{
if (!pq.empty())
{
pq.pop();
}
}
}
end = clock();
pqTime = end - pqTime;
index = 0;
arrHeapTime = clock();
for (int a = 0 ; a < rounds ; a++)
{
if (tSet.push_pop[a] == 0)
{
arrHeap = pushArrayHeap(tSet.inserts[index], arrHeap, &size, &maxSize);
index++;
}
else
{
if (size != 0)
{
popArrayHeap(arrHeap, &size);
}
}
}
end = clock();
arrHeapTime = end - arrHeapTime;
printf("Random insertions and deletions time : \n");
printf("pqTime : %lf\n",(double)pqTime / CLOCKS_PER_SEC);
printf("arrHeapTime : %lf\n", (double)arrHeapTime / CLOCKS_PER_SEC);
printf("variant_time : %lf\n\n", (double)variant_time / CLOCKS_PER_SEC);
}
int main()
{
printf("pqTime : Time taken by priority_queue\n");
printf("arrHeapTime : Time taken by arrayHeap\n");
printf("variant_time : Time taken by variant heap\n\n");
initRand();
if (test_1(10000, 1, 1000) == 1)
{
printf("Test 1 successful\n");
}
else
{
printf("Test 1 failed\n");
return 0;
}
if (test_2(10000, 1, 1000) == 1)
{
printf("Test 2 successful\n\n");
}
else
{
printf("Test 2 failed\n");
return 0;
}
benchmark_1(BENCHMARK_ROUNDS, 1, 10000);
benchmark_2(BENCHMARK_ROUNDS, 1, 10000);
return 1;
}