-
Notifications
You must be signed in to change notification settings - Fork 0
/
ksearch.hh
173 lines (157 loc) · 5.26 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
/* Masstree
* Eddie Kohler, Yandong Mao, Robert Morris
* Copyright (c) 2012-2014 President and Fellows of Harvard College
* Copyright (c) 2012-2014 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 n.compare_key(ka, p);
}
};
struct key_indexed_position {
int i;
int p;
inline key_indexed_position() {
}
inline constexpr key_indexed_position(int i_, int p_)
: i(i_), p(p_) {
}
};
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 F>
key_indexed_position 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 key_indexed_position(m, mp);
else
l = m + 1;
}
return key_indexed_position(l, -1);
}
template <typename KA, typename T>
inline key_indexed_position 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 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>
key_indexed_position 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 if (cmp == 0)
return key_indexed_position(l, lp);
else
++l;
}
return key_indexed_position(l, -1);
}
struct key_bound_binary {
static constexpr bool is_binary = true;
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>
static inline key_indexed_position 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 key_indexed_position lower_by(const KA& ka, const T& n, F comparator) {
return key_lower_bound_by(ka, n, comparator);
}
};
struct key_bound_linear {
static constexpr bool is_binary = false;
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>
static inline key_indexed_position lower(const KA& ka, const T& n) {
return key_find_lower_bound_by(ka, n, key_comparator<KA, T>());
}
template <typename KA, typename T, typename F>
static inline key_indexed_position lower_by(const KA& ka, const T& n, F comparator) {
return key_find_lower_bound_by(ka, n, comparator);
}
};
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