-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
133 lines (122 loc) · 2.25 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
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include "hash.h"
#include <string>
using namespace std;
struct Test
{
int a;
int b;
bool operator==(const Test &other)
{
return memcmp(&other, this, sizeof(other)) == 0;
}
};
int main()
{
int count = 0;
int times = 30;
Test t = {0};
char buf[100];
//test 1
CHash<Test> r(28);
unsigned int key = 1;
for (key = 1; key < 0xfffffff; key <<= 1)
{
t.a = key;
for (int size_list = 0; size_list < times; size_list++)
{
count++;
t.a++;
if (r.find(key, t))
{
printf("error 1 key=%d\r\n", key);
}
else
{
r.push_back(key, t);
}
}
}
for (key = 1; key < 0xfffffff; key <<= 1)
{
t.a = key;
for (int size_list = 0; size_list < times; size_list++)
{
count++;
t.a++;
if (!r.find(key, t))
{
printf("error 1 key=%d\r\n", key);
}
}
}
//test 2
CHash<string> rStr(29);
for (key = 1; key < 0xfffffff; key <<= 1)
{
t.a = key;
for (int size_list = 0; size_list < times; size_list++)
{
count++;
t.a++;
sprintf(buf, "str %d", t.a);
string str(buf);
rStr.push_back(key, str);
if (!rStr.find(key, str))
{
printf("error 2 str=%s\r\n", str.c_str());
}
}
}
for (key = 1; key < 0xfffffff; key <<= 1)
{
t.a = key;
for (int size_list = 0; size_list < times; size_list++)
{
count++;
t.a++;
sprintf(buf, "str %d", t.a);
string str(buf);
if (!rStr.find(key, str))
{
printf("error 2 str=%s\r\n", str.c_str());
}
}
}
rStr.clear();
//test 3
CHash<string> rStr3;
for (key = 1; key < 0xfffffff; key <<= 1)
{
t.a = key;
for (int size_list = 0; size_list < times; size_list++)
{
count++;
t.a++;
sprintf(buf, "str %d", t.a);
string str(buf);
rStr3.push_back(key, str);
if (!rStr3.find(key, str))
{
printf("error 3 str=%s\r\n", str.c_str());
}
}
}
for (key = 1; key < 0xfffffff; key <<= 1)
{
t.a = key;
for (int size_list = 0; size_list < times; size_list++)
{
count++;
t.a++;
sprintf(buf, "str %d", t.a);
string str(buf);
if (!rStr3.find(key, str))
{
printf("error 3 str=%s\r\n", str.c_str());
}
}
}
return 1;
}