forked from MarginaliaSearch/MarginaliaSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLongArraySearch.java
More file actions
198 lines (159 loc) · 5.11 KB
/
LongArraySearch.java
File metadata and controls
198 lines (159 loc) · 5.11 KB
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
package nu.marginalia.array.algo;
import nu.marginalia.array.page.LongQueryBuffer;
public interface LongArraySearch extends LongArrayBase {
default long binarySearch(long key, long fromIndex, long toIndex) {
long low = 0;
long high = (toIndex - fromIndex) - 1;
long len = high - low;
while (len > 0) {
var half = len / 2;
if (get(fromIndex + low + half) < key) {
low += len - half;
}
len = half;
}
return fromIndex + low;
}
default long binarySearch2(long key, long fromIndex, long toIndex) {
long low = 0;
long len = toIndex - fromIndex;
while (len > 0) {
var half = len / 2;
long val = get(fromIndex + low + half);
if (val < key) {
low += len - half;
}
else if (val == key) {
low += half;
break;
}
len = half;
}
return fromIndex + low;
}
/** Find the lowest position strictly greater than the key */
default long binarySearchStrictlyLT(long key, long fromIndex, long toIndex) {
long low = 0;
long len = toIndex - fromIndex;
while (len > 0) {
var half = len / 2;
long val = get(fromIndex + low + half);
if (val <= key) {
low += len - half;
}
len = half;
}
return fromIndex + low;
}
default long binarySearchN(int sz, long key, long fromIndex, long toIndex) {
long low = 0;
long high = (toIndex - fromIndex)/sz - 1;
long len = high - low;
while (len > 0) {
var half = len / 2;
if (get(fromIndex + sz * (low + half)) < key) {
low += len - half;
}
len = half;
}
return fromIndex + sz * low;
}
default void retain(LongQueryBuffer buffer, long boundary, long searchStart, long searchEnd) {
if (searchStart >= searchEnd) return;
long bv = buffer.currentValue();
long av = get(searchStart);
long pos = searchStart;
while (bv <= boundary && buffer.hasMore()) {
if (bv < av) {
if (!buffer.rejectAndAdvance()) break;
bv = buffer.currentValue();
continue;
}
else if (bv == av) {
if (!buffer.retainAndAdvance()) break;
bv = buffer.currentValue();
continue;
}
if (++pos < searchEnd) {
av = get(pos);
}
else {
break;
}
}
}
default void retainN(LongQueryBuffer buffer, int sz, long boundary, long searchStart, long searchEnd) {
if (searchStart >= searchEnd) return;
long bv = buffer.currentValue();
long av = get(searchStart);
long pos = searchStart;
while (bv <= boundary && buffer.hasMore()) {
if (bv < av) {
if (!buffer.rejectAndAdvance()) break;
bv = buffer.currentValue();
continue;
}
else if (bv == av) {
if (!buffer.retainAndAdvance()) break;
bv = buffer.currentValue();
continue;
}
pos += sz;
if (pos < searchEnd) {
av = get(pos);
}
else {
break;
}
}
}
default void reject(LongQueryBuffer buffer, long boundary, long searchStart, long searchEnd) {
if (searchStart >= searchEnd) return;
long bv = buffer.currentValue();
long av = get(searchStart);
long pos = searchStart;
while (bv <= boundary && buffer.hasMore()) {
if (bv < av) {
if (!buffer.retainAndAdvance()) break;
bv = buffer.currentValue();
continue;
}
else if (bv == av) {
if (!buffer.rejectAndAdvance()) break;
bv = buffer.currentValue();
continue;
}
if (++pos < searchEnd) {
av = get(pos);
}
else {
break;
}
}
}
default void rejectN(LongQueryBuffer buffer, int sz, long boundary, long searchStart, long searchEnd) {
if (searchStart >= searchEnd) return;
long bv = buffer.currentValue();
long av = get(searchStart);
long pos = searchStart;
while (bv <= boundary && buffer.hasMore()) {
if (bv < av) {
if (!buffer.retainAndAdvance()) break;
bv = buffer.currentValue();
continue;
}
else if (bv == av) {
if (!buffer.rejectAndAdvance()) break;
bv = buffer.currentValue();
continue;
}
pos += sz;
if (pos < searchEnd) {
av = get(pos);
}
else {
break;
}
}
}
}