forked from kohler/masstree-beta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathksearch.hh
324 lines (298 loc) · 9.86 KB
/
ksearch.hh
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
/* Masstree
* Eddie Kohler, Yandong Mao, Robert Morris
* Copyright (c) 2012-2013 President and Fellows of Harvard College
* Copyright (c) 2012-2013 Massachusetts Institute of Technology
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the conditions
* listed in the Masstree LICENSE file. These conditions include: you must
* preserve this copyright notice, and you cannot mention the copyright
* holders in advertising related to the Software without their permission.
* The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This
* notice is a summary of the Masstree LICENSE file; the license in that file
* is legally binding.
*/
#ifndef KSEARCH_HH
#define KSEARCH_HH 1
#include "kpermuter.hh"
template <typename KA, typename T>
struct key_comparator {
int operator()(const KA &ka, const T &n, int p) {
return key_compare(ka, n, p);
}
};
template <typename KA, typename T, typename V>
struct versioned_key_comparator {
V version_;
versioned_key_comparator(V version)
: version_(version) {
}
int operator()(const KA &ka, const T &n, int p) {
return key_compare(ka, n, p, version_);
}
};
template <typename KA, typename T, typename F>
int key_upper_bound_by(const KA &ka, const T &n, F comparator)
{
typename key_permuter<T>::type perm = key_permuter<T>::permutation(n);
int l = 0, r = perm.size();
while (l < r) {
int m = (l + r) >> 1;
int mp = perm[m];
int cmp = comparator(ka, n, mp);
if (cmp < 0)
r = m;
else if (cmp == 0)
return m + 1;
else
l = m + 1;
}
return l;
}
template <typename KA, typename T>
inline int key_upper_bound(const KA &ka, const T &n)
{
return key_upper_bound_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
inline int key_upper_bound(const KA &ka, const T &n, V version)
{
return key_upper_bound_by(ka, n, versioned_key_comparator<KA, T, V>(version));
}
template <typename KA, typename T, typename F>
int key_lower_bound_by(const KA &ka, const T &n, F comparator)
{
typename key_permuter<T>::type perm = key_permuter<T>::permutation(n);
int l = 0, r = perm.size();
while (l < r) {
int m = (l + r) >> 1;
int mp = perm[m];
int cmp = comparator(ka, n, mp);
if (cmp < 0)
r = m;
else if (cmp == 0)
return m;
else
l = m + 1;
}
return l;
}
template <typename KA, typename T>
inline int key_lower_bound(const KA &ka, const T &n)
{
return key_lower_bound_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
inline int key_lower_bound(const KA &ka, const T &n, V version)
{
return key_lower_bound_by(ka, n, versioned_key_comparator<KA, T, V>(version));
}
template <typename KA, typename T, typename F>
int key_lower_bound_with_position_by(const KA &ka, const T &n, int &position, F comparator)
{
typename key_permuter<T>::type perm = key_permuter<T>::permutation(n);
int l = 0, r = perm.size();
while (l < r) {
int m = (l + r) >> 1;
int mp = perm[m];
int cmp = comparator(ka, n, mp);
if (cmp < 0)
r = m;
else if (cmp == 0) {
position = mp;
return m;
} else
l = m + 1;
}
position = -1;
return l;
}
template <typename KA, typename T>
inline int key_lower_bound_with_position(const KA &ka, const T &n, int &position)
{
return key_lower_bound_with_position_by(ka, n, position, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
inline int key_lower_bound_with_position(const KA &ka, const T &n, V version, int &position)
{
return key_lower_bound_with_position_by(ka, n, position, versioned_key_comparator<KA, T, V>(version));
}
template <typename KA, typename T, typename F>
int key_lower_bound_check_by(const KA &ka, const T &n, F comparator)
{
typename key_permuter<T>::type perm = key_permuter<T>::permutation(n);
int l = 0, r = perm.size();
while (l < r) {
int m = (l + r) >> 1;
int mp = perm[m];
int cmp = comparator(ka, n, mp);
if (cmp < 0)
r = m;
else if (cmp == 0)
return mp;
else
l = m + 1;
}
return -l - 1;
}
template <typename KA, typename T>
inline int key_lower_bound_check(const KA &ka, const T &n)
{
return key_lower_bound_check_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
inline int key_lower_bound_check(const KA &ka, const T &n, V version)
{
return key_lower_bound_check_by(ka, n, versioned_key_comparator<KA, T, V>(version));
}
template <typename KA, typename T, typename F>
int key_find_upper_bound_by(const KA &ka, const T &n, F comparator)
{
typename key_permuter<T>::type perm = key_permuter<T>::permutation(n);
int l = 0, r = perm.size();
while (l < r) {
int lp = perm[l];
int cmp = comparator(ka, n, lp);
if (cmp < 0)
break;
else
++l;
}
return l;
}
template <typename KA, typename T, typename F>
int key_find_lower_bound_by(const KA &ka, const T &n, F comparator)
{
typename key_permuter<T>::type perm = key_permuter<T>::permutation(n);
int l = 0, r = perm.size();
while (l < r) {
int lp = perm[l];
int cmp = comparator(ka, n, lp);
if (cmp <= 0)
break;
else
++l;
}
return l;
}
template <typename KA, typename T, typename F>
int key_find_lower_bound_with_position_by(const KA &ka, const T &n, int &position, F comparator)
{
typename key_permuter<T>::type perm = key_permuter<T>::permutation(n);
int l = 0, r = perm.size();
while (l < r) {
int lp = perm[l];
int cmp = comparator(ka, n, lp);
if (cmp < 0)
break;
else if (cmp == 0) {
position = lp;
return l;
} else
++l;
}
position = -1;
return l;
}
template <typename KA, typename T, typename F>
int key_find_lower_bound_check_by(const KA &ka, const T &n, F comparator)
{
typename key_permuter<T>::type perm = key_permuter<T>::permutation(n);
int l = 0, r = perm.size();
while (l < r) {
int lp = perm[l];
int cmp = comparator(ka, n, lp);
if (cmp < 0)
break;
else if (cmp == 0)
return lp;
else
++l;
}
return -l - 1;
}
struct key_bound_binary {
template <typename KA, typename T>
static inline int upper(const KA &ka, const T &n) {
return key_upper_bound_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
static inline int upper(const KA &ka, const T &n, V version) {
return key_upper_bound_by(ka, n, versioned_key_comparator<KA, T, V>(version));
}
template <typename KA, typename T>
static inline int lower(const KA &ka, const T &n) {
return key_lower_bound_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename F>
static inline int lower_by(const KA &ka, const T &n, F comparator) {
return key_lower_bound_by(ka, n, comparator);
}
template <typename KA, typename T>
static inline int lower_with_position(const KA &ka, const T &n, int &position) {
return key_lower_bound_with_position_by(ka, n, position, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
static inline int lower_with_position(const KA &ka, const T &n, V version, int &position) {
return key_lower_bound_with_position_by(ka, n, position, versioned_key_comparator<KA, T, V>(version));
}
template <typename KA, typename T, typename F>
static inline int lower_with_position_by(const KA &ka, const T &n, int &position, F comparator) {
return key_lower_bound_with_position_by(ka, n, position, comparator);
}
template <typename KA, typename T>
static inline int lower_check(const KA &ka, const T &n) {
return key_lower_bound_check_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
static inline int lower_check(const KA &ka, const T &n, V version) {
return key_lower_bound_check_by(ka, n, versioned_key_comparator<KA, T, V>(version));
}
};
struct key_bound_linear {
template <typename KA, typename T>
static inline int upper(const KA &ka, const T &n) {
return key_find_upper_bound_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
static inline int upper(const KA &ka, const T &n, V version) {
return key_find_upper_bound_by(ka, n, versioned_key_comparator<KA, T, V>(version));
}
template <typename KA, typename T>
static inline int lower(const KA &ka, const T &n) {
return key_find_lower_bound_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T>
static inline int lower_with_position(const KA &ka, const T &n, int &position) {
return key_find_lower_bound_with_position_by(ka, n, position, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
static inline int lower_with_position(const KA &ka, const T &n, V version, int &position) {
return key_find_lower_bound_with_position_by(ka, n, position, versioned_key_comparator<KA, T, V>(version));
}
template <typename KA, typename T>
static inline int lower_check(const KA &ka, const T &n) {
return key_find_lower_bound_check_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename V>
static inline int lower_check(const KA &ka, const T &n, V version) {
return key_find_lower_bound_check_by(ka, n, versioned_key_comparator<KA, T, V>(version));
}
};
enum {
bound_method_fast = 0,
bound_method_binary,
bound_method_linear
};
template <int max_size, int method = bound_method_fast> struct key_bound {};
template <int max_size> struct key_bound<max_size, bound_method_binary> {
typedef key_bound_binary type;
};
template <int max_size> struct key_bound<max_size, bound_method_linear> {
typedef key_bound_linear type;
};
template <int max_size> struct key_bound<max_size, bound_method_fast> {
typedef typename key_bound<max_size, (max_size > 16 ? bound_method_binary : bound_method_linear)>::type type;
};
#endif