-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cpp
executable file
·395 lines (308 loc) · 7.72 KB
/
test.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
#include <iostream>
#include <memory.h>
#include <time.h>
#include <stdlib.h>
#include <assert.h>
#include <limits.h>
using namespace std;
//
//#define ORG_MAP
//
#ifdef ORG_MAP
#include <map>
#define MAP map<int, int>
#else
#include <bits/stl_smap.h>
#define MAP smap<int, int>
#endif
#define SIZE 10000
#define LOW 1000
#define ITR MAP::iterator
#define RITR MAP::reverse_iterator
#define START \
clock_t start, end; \
start = clock();
#define ELAPSED \
end = clock();
int g_random[SIZE];
void gen_random()
{
int d = 1;
for(int i = 0; i < SIZE; ++i)
{
g_random[i] = LOW + i + d++;
}
}
clock_t test_insert(MAP &mp)
{
START
int x;
for(int i = 0; i < SIZE; ++i)
{
x = g_random[i];
mp.insert(make_pair(x, x));
}
assert(mp.size() == SIZE);
return ELAPSED
}
clock_t test_walk(MAP &mp)
{
START
ITR itr = mp.begin();
int prev = itr->first;
for(++itr; itr != mp.end(); ++itr)
{
assert(prev < itr->first);
}
return ELAPSED
}
clock_t test_rev_walk(MAP &mp)
{
START
RITR itr = mp.rbegin();
int prev = itr->first;
for(++itr; itr != mp.rend(); ++itr)
{
assert(prev > itr->first);
}
return ELAPSED
}
clock_t test_search_by_key(MAP &mp)
{
START
ITR itr;
for(int i = 0; i < SIZE; ++i)
{
itr = mp.find(g_random[i]);
assert(itr != mp.end());
}
return ELAPSED
}
clock_t test_assign(MAP &mp, MAP &mp2)
{
START
mp2 = mp;
return ELAPSED
}
clock_t test_lower_bound(MAP &mp)
{
START
ITR itr, itr2;
for(int i = 0; i < SIZE; ++i)
{
itr = mp.lower_bound(LOW + i);
itr2 = mp.find(LOW + i);
if(itr2 != mp.end())
assert(itr->first == (LOW + i));
else if(itr != mp.end())
assert(itr->first > (LOW + i));
}
return ELAPSED
}
clock_t test_upper_bound(MAP &mp)
{
START
ITR itr;
for(int i = 0; i < SIZE; ++i)
{
itr = mp.upper_bound(LOW + i);
if(itr != mp.end())
assert(itr->first > (LOW + i));
}
return ELAPSED
}
clock_t test_erase_by_value(MAP &mp)
{
START
ITR itr;
for(int i = 0; i < SIZE; ++i)
{
assert(mp.erase(g_random[i]) == 1);
itr = mp.find(g_random[i]);
assert(itr == mp.end());
}
assert(mp.size() == 0);
assert(mp.empty() == true);
return ELAPSED
}
clock_t test_erase_by_hint(MAP &mp)
{
START
ITR itr;
for(int i = 0; i < SIZE; ++i)
{
itr = mp.find(g_random[i]);
assert(itr != mp.end());
mp.erase(itr);
itr = mp.find(g_random[i]);
assert(itr == mp.end());
}
assert(mp.size() == 0);
assert(mp.empty() == true);
return ELAPSED
}
clock_t test_clear(MAP &mp)
{
START
mp.clear();
assert(mp.empty() == true);
assert(mp.size() == 0);
return ELAPSED
}
clock_t test_range_insert(MAP &mp)
{
START
MAP tmp;
ITR itr;
for(int i = 0; i < SIZE; ++i)
{
itr = mp.find(i + 4 * SIZE);
assert(itr == mp.end());
tmp.insert(make_pair((i + 4 * SIZE), (i + 4 * SIZE)));
}
mp.insert(tmp.begin(), tmp.end());
assert(mp.size() == SIZE + SIZE);
itr = mp.find(0 + 4 * SIZE);
mp.erase(itr, mp.end());
assert(mp.size() == SIZE);
return ELAPSED
}
clock_t test_operator_insert(MAP &mp)
{
START
MAP tmp;
ITR itr;
for(int i = 0; i < SIZE; ++i)
{
itr = mp.find(i + 4 * SIZE);
assert(mp[i + 4 * SIZE] == 0);
mp[i + 4 * SIZE] = i + 4 * SIZE;
itr = mp.find(i + 4 * SIZE);
assert(mp[i + 4 * SIZE] != 0);
}
assert(mp.size() == SIZE + SIZE);
itr = mp.find(0 + 4 * SIZE);
mp.erase(itr, mp.end());
assert(mp.size() == SIZE);
return ELAPSED
}
clock_t test_at(MAP &mp)
{
START
MAP tmp;
ITR itr;
for(int i = 0; i < SIZE; ++i)
{
try
{
mp.at(g_random[i]);
}
catch(...)
{
assert(false);
}
}
return ELAPSED
}
int walk_and_get_count(MAP &mp)
{
ITR itr = mp.begin();
if(itr == mp.end())
return 0;
int count = 1;
int prev = itr->first;
for(++itr; itr != mp.end(); ++itr)
{
count++;
assert(prev < itr->first);
}
return count;
}
clock_t test_swap(MAP &mp)
{
START
MAP tmp;
for(int i = 0; i < SIZE / 2; ++i)
{
tmp.insert(make_pair(g_random[i], g_random[i]));
}
assert(tmp.size() == SIZE / 2);
tmp.swap(mp);
assert(mp.size() == SIZE / 2);
assert(tmp.size() == SIZE);
assert(walk_and_get_count(mp) == mp.size());
assert(walk_and_get_count(tmp) == tmp.size());
mp.swap(tmp);
assert(mp.size() == SIZE);
assert(tmp.size() == SIZE / 2);
assert(walk_and_get_count(mp) == mp.size());
assert(walk_and_get_count(tmp) == tmp.size());
return ELAPSED
}
void result(const char *test_case, clock_t (*fn)(MAP&mp), MAP &mp)
{
clock_t t = fn(mp);
cout << endl << "["<< test_case << "]";
cout << endl << "Tick elapsed = " << t;
cout << endl << "[DONE]" << endl;
}
int main()
{
srand(time(NULL));
gen_random();
cout << endl << "#### TESTING STL SKIPLIST MAP ####" << endl;
clock_t t;
MAP f;
result("INSERT", test_insert, f);
result("WALK", test_walk, f);
result("REVERSE WALK", test_rev_walk, f);
result("SWAP", test_swap, f);
result("SEARCH BY KEY", test_search_by_key, f);
result("ERASE BY KEY", test_erase_by_value, f);
test_insert(f);
result("ERASE BY HINT", test_erase_by_hint, f);
test_insert(f);
result("LOWER BOUND", test_lower_bound, f);
result("UPPER BOUND", test_upper_bound, f);
result("RANGE INSERT", test_range_insert, f);
result("OPERATOR [] INSERT", test_operator_insert, f);
result("AT", test_at, f);
result("CLEAR", test_clear, f);
test_insert(f);
MAP f2;
f2 = f;
result("ASSIGNED WALK", test_walk, f2);
result("ASSIGNED REVERSE WALK", test_rev_walk, f2);
result("SWAP", test_swap, f2);
result("ASSIGNED SEARCH BY KEY", test_search_by_key, f2);
result("ASSIGNED ERASE BY KEY", test_erase_by_value, f2);
test_insert(f2);
result("ASSIGNED ERASE BY HINT", test_erase_by_hint, f2);
test_insert(f2);
result("ASSIGNED LOWER BOUND", test_lower_bound, f2);
result("ASSIGNED UPPER BOUND", test_upper_bound, f2);
result("RANGE INSERT", test_range_insert, f2);
result("OPERATOR [] INSERT", test_operator_insert, f2);
result("AT", test_at, f2);
result("CLEAR", test_clear, f2);
test_insert(f2);
MAP f3(f2);
result("COPY CTOR WALK", test_walk, f3);
result("COPY CTOR REVERSE WALK", test_rev_walk, f3);
result("SWAP", test_swap, f3);
result("COPY CTOR SEARCH BY KEY", test_search_by_key, f3);
result("COPY CTOR ERASE BY KEY", test_erase_by_value, f3);
test_insert(f3);
result("COPY CTOR ERASE BY HINT", test_erase_by_hint, f3);
test_insert(f3);
result("COPY CTOR LOWER BOUND", test_lower_bound, f3);
result("COPY CTOR UPPER BOUND", test_upper_bound, f3);
result("COPY CTOR RANGE INSERT", test_range_insert, f3);
result("OPERATOR [] INSERT", test_operator_insert, f3);
result("AT", test_at, f3);
result("COPY CTOR CLEAR", test_clear, f3);
test_insert(f3);
cout << endl << "#### TESTING STL SKIPLIST MAP DONE####" << endl;
cout << endl;
return 0;
}