-
Notifications
You must be signed in to change notification settings - Fork 0
/
int_hash_map.cpp
67 lines (51 loc) · 1.04 KB
/
int_hash_map.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
#include <stdio.h>
#include "int_hash_map.h"
#if defined(INT_HASH_MAP_TEST_MAIN)
CREATE_TEST_CASE("int hash map basic") {
PositiveIntHashMap<int> table;
BNS_FOR_I(1000 * 1000) {
table.Put(i, i * 7);
}
BNS_FOR_I(1000 * 1000) {
int val = -1;
bool present = table.Get(i, &val);
ASSERT(present);
ASSERT(val == i * 7);
}
return 0;
}
CREATE_TEST_CASE("int hash map basic in-depth") {
PositiveIntHashMap<int> table;
BNS_FOR_I(10 * 1000) {
table.Put(i, i * 7);
BNS_FOR_J(i + 1) {
int val = -1;
bool present = table.Get(j, &val);
ASSERT(present);
ASSERT(val == j * 7);
}
}
return 0;
}
CREATE_TEST_CASE("int hash map empty") {
PositiveIntHashMap<int> table;
BNS_FOR_I(1000) {
int val = -1;
bool present = table.Get(i, &val);
ASSERT(!present);
ASSERT(val == -1);
}
return 0;
}
CREATE_TEST_CASE("int hash map empty") {
PositiveIntHashMap<int> table;
table.Put(1000, 0);
BNS_FOR_I(1000) {
int val = -1;
bool present = table.Get(i, &val);
ASSERT(!present);
ASSERT(val == -1);
}
return 0;
}
#endif