-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathheap.hpp
436 lines (389 loc) · 13.5 KB
/
heap.hpp
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/**
* @file heap.hpp
* @brief
* @date 2019-9-21
* @author Peter
* @copyright
* Peter of [ThinkSpirit Laboratory](http://thinkspirit.org/)
* of [Nanjing University of Information Science & Technology](http://www.nuist.edu.cn/)
* all rights reserved
*/
#ifndef KERBAL_ALGORITHM_HEAP_HPP
#define KERBAL_ALGORITHM_HEAP_HPP
#include <kerbal/algorithm/swap.hpp>
#include <kerbal/compare/basic_compare.hpp>
#include <kerbal/compatibility/constexpr.hpp>
#include <kerbal/iterator/iterator.hpp>
#include <kerbal/iterator/iterator_traits.hpp>
namespace kerbal
{
namespace algorithm
{
namespace detail
{
template <typename ForwardIterator>
KERBAL_CONSTEXPR14
ForwardIterator
heap_left_son(
ForwardIterator first, ForwardIterator parent, ForwardIterator last,
std::forward_iterator_tag
)
{
if (parent == last) {
return last;
}
typedef ForwardIterator iterator;
iterator adv(kerbal::iterator::next(parent));
while (first != parent) {
if (adv != last) {
++adv;
} else {
return last;
}
++first;
}
return adv;
}
template <typename RandomAccessIterator>
KERBAL_CONSTEXPR
RandomAccessIterator
heap_left_son(
RandomAccessIterator first, RandomAccessIterator parent, RandomAccessIterator last,
std::random_access_iterator_tag
)
{
return kerbal::iterator::next_at_most(parent, kerbal::iterator::distance(first, parent) + 1, last);
}
template <typename ForwardIterator>
KERBAL_CONSTEXPR
ForwardIterator
heap_left_son(ForwardIterator first, ForwardIterator parent, ForwardIterator last)
{
return kerbal::algorithm::detail::heap_left_son(first, parent, last, kerbal::iterator::iterator_category(first));
}
/**
* @require first != last
*/
template <typename ForwardIterator, typename Compare>
KERBAL_CONSTEXPR14
void adjust_down_unguarded(
ForwardIterator first, ForwardIterator current_adjust, ForwardIterator last,
Compare cmp, std::forward_iterator_tag
)
{
typedef ForwardIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::difference_type difference_type;
difference_type step = kerbal::iterator::distance(first, current_adjust);
iterator left_son(kerbal::algorithm::detail::heap_left_son(first, current_adjust, last));
while (left_son != last) {
iterator right_son(kerbal::iterator::next(left_son));
if (right_son != last) { // current adjust have both left and right son
bool max_one_is_right = cmp(*left_son, *right_son);
iterator max_one(max_one_is_right ? right_son : left_son);
if (cmp(*current_adjust, *max_one)) { // current < max_one
kerbal::algorithm::iter_swap(current_adjust, max_one);
current_adjust = max_one;
step += max_one_is_right;
left_son = kerbal::iterator::next_at_most(current_adjust, step + 1, last);
step = step * 2 + 1;
} else {
break;
}
} else { // current adjust only have left son
if (cmp(*current_adjust, *left_son)) { // current < left
kerbal::algorithm::iter_swap(current_adjust, left_son);
}
break;
}
}
}
template <typename RandomAccessIterator, typename Compare>
KERBAL_CONSTEXPR14
void adjust_down_unguarded(
RandomAccessIterator first, RandomAccessIterator current_adjust,
RandomAccessIterator last, Compare cmp, std::random_access_iterator_tag
)
{
typedef RandomAccessIterator iterator;
iterator left_son(kerbal::algorithm::detail::heap_left_son(first, current_adjust, last));
while (left_son != last) {
iterator right_son(kerbal::iterator::next(left_son));
if (right_son != last) { // current adjust have both left and right son
iterator max_one(cmp(*left_son, *right_son) ? right_son : left_son);
if (cmp(*current_adjust, *max_one)) { // current < max_one
kerbal::algorithm::iter_swap(current_adjust, max_one);
current_adjust = max_one;
left_son = kerbal::algorithm::detail::heap_left_son(first, current_adjust, last);
} else {
break;
}
} else { // current adjust only have left son
if (cmp(*current_adjust, *left_son)) { // current < left
kerbal::algorithm::iter_swap(current_adjust, left_son);
}
break;
}
}
}
template <typename ForwardIterator, typename Compare>
KERBAL_CONSTEXPR14
void adjust_down_unguarded(
ForwardIterator first, ForwardIterator current_adjust, ForwardIterator last,
Compare cmp
)
{
adjust_down_unguarded(first, current_adjust, last, cmp, kerbal::iterator::iterator_category(first));
}
/**
* @require first != last
*/
template <typename ForwardIterator, typename Compare>
KERBAL_CONSTEXPR14
void adjust_top_down_unguarded(
ForwardIterator first, ForwardIterator last, Compare cmp,
std::forward_iterator_tag
)
{
typedef ForwardIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::difference_type difference_type;
iterator current_adjust(first);
difference_type step = 1;
iterator left_son(kerbal::iterator::next(current_adjust));
while (left_son != last) {
iterator right_son(kerbal::iterator::next(left_son));
if (right_son != last) { // current adjust have both left and right son
bool max_one_is_right = cmp(*left_son, *right_son);
iterator max_one(max_one_is_right ? right_son : left_son);
if (cmp(*current_adjust, *max_one)) { // current < max_one
kerbal::algorithm::iter_swap(current_adjust, max_one);
current_adjust = max_one;
step += max_one_is_right;
left_son = kerbal::iterator::next_at_most(current_adjust, step + 1, last);
step = step * 2 + 1;
} else {
break;
}
} else { // current adjust only have left son
if (cmp(*current_adjust, *left_son)) { // current < left
kerbal::algorithm::iter_swap(current_adjust, left_son);
}
break;
}
}
}
/**
* @require first != last
*/
template <typename RandomAccessIterator, typename Compare>
KERBAL_CONSTEXPR14
void adjust_top_down_unguarded(
RandomAccessIterator first, RandomAccessIterator last, Compare cmp,
std::random_access_iterator_tag
)
{
typedef RandomAccessIterator iterator;
iterator current_adjust(first);
iterator left_son(kerbal::iterator::next(current_adjust));
while (left_son != last) {
iterator right_son(kerbal::iterator::next(left_son));
if (right_son != last) { // current adjust have both left and right son
iterator max_one(cmp(*left_son, *right_son) ? right_son : left_son);
if (cmp(*current_adjust, *max_one)) { // current < max_one
kerbal::algorithm::iter_swap(current_adjust, max_one);
current_adjust = max_one;
left_son = kerbal::algorithm::detail::heap_left_son(first, current_adjust, last);
} else {
break;
}
} else { // current adjust only have left son
if (cmp(*current_adjust, *left_son)) { // current < left
kerbal::algorithm::iter_swap(current_adjust, left_son);
}
break;
}
}
}
template <typename ForwardIterator, typename Compare>
KERBAL_CONSTEXPR14
void adjust_top_down_unguarded(ForwardIterator first, ForwardIterator last, Compare cmp)
{
kerbal::algorithm::detail::adjust_top_down_unguarded(first, last, cmp, kerbal::iterator::iterator_category(first));
}
} // namespace detail
template <typename BidirectionalIterator, typename Compare>
KERBAL_CONSTEXPR14
void push_heap(BidirectionalIterator first, BidirectionalIterator last, Compare cmp)
{
if (first == last) {
return;
}
typedef BidirectionalIterator iterator;
iterator current_adjust(kerbal::iterator::prev(last));
while (current_adjust != first) {
iterator parent(
kerbal::iterator::prev(
kerbal::iterator::midden_iterator(first, kerbal::iterator::next(current_adjust))
)
);
if (cmp(*parent, *current_adjust)) {
kerbal::algorithm::iter_swap(parent, current_adjust);
current_adjust = parent;
} else {
break;
}
}
}
template <typename BidirectionalIterator>
KERBAL_CONSTEXPR14
void push_heap(BidirectionalIterator first, BidirectionalIterator last)
{
typedef BidirectionalIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::value_type value_type;
kerbal::algorithm::push_heap(first, last, kerbal::compare::less<value_type>());
}
template <typename BidirectionalIterator, typename Compare>
KERBAL_CONSTEXPR14
void pop_heap(BidirectionalIterator first, BidirectionalIterator last, Compare cmp)
{
if (first != last) {
--last;
if (first != last) {
kerbal::algorithm::iter_swap(first, last);
kerbal::algorithm::detail::adjust_top_down_unguarded(first, last, cmp);
}
}
}
template <typename BidirectionalIterator>
KERBAL_CONSTEXPR14
void pop_heap(BidirectionalIterator first, BidirectionalIterator last)
{
typedef BidirectionalIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::value_type value_type;
kerbal::algorithm::pop_heap(first, last, kerbal::compare::less<value_type>());
}
template <typename BidirectionalIterator, typename Compare>
KERBAL_CONSTEXPR14
void sort_heap(BidirectionalIterator first, BidirectionalIterator last, Compare cmp)
{
typedef BidirectionalIterator iterator;
if (first == last) {
return;
}
iterator next_after_first(kerbal::iterator::next(first));
while (next_after_first != last) {
--last;
kerbal::algorithm::iter_swap(first, last);
kerbal::algorithm::detail::adjust_top_down_unguarded(first, last, cmp);
}
}
template <typename BidirectionalIterator>
KERBAL_CONSTEXPR14
void sort_heap(BidirectionalIterator first, BidirectionalIterator last)
{
typedef BidirectionalIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::value_type value_type;
kerbal::algorithm::sort_heap(first, last, kerbal::compare::less<value_type>());
}
template <typename ForwardIterator, typename Compare>
KERBAL_CONSTEXPR14
ForwardIterator
is_heap_until(ForwardIterator first, ForwardIterator last, Compare cmp)
{
typedef ForwardIterator iterator;
if (first == last) {
return last;
}
iterator son(kerbal::iterator::next(first)); //left son;
while (son != last) {
if (cmp(*first, *son)) {
break;
}
++son; //right son
if (son == last) {
break;
}
if (cmp(*first, *son)) {
break;
}
++son; //left son;
++first;
}
return son;
}
template <typename ForwardIterator>
KERBAL_CONSTEXPR14
ForwardIterator
is_heap_until(ForwardIterator first, ForwardIterator last)
{
typedef ForwardIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::value_type value_type;
return kerbal::algorithm::is_heap_until(first, last, kerbal::compare::less<value_type>());
}
template <typename ForwardIterator, typename Compare>
KERBAL_CONSTEXPR14
bool is_heap(ForwardIterator first, ForwardIterator last, Compare cmp)
{
return kerbal::algorithm::is_heap_until(first, last, cmp) == last;
}
template <typename ForwardIterator>
KERBAL_CONSTEXPR14
bool is_heap(ForwardIterator first, ForwardIterator last)
{
typedef ForwardIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::value_type value_type;
return kerbal::algorithm::is_heap(first, last, kerbal::compare::less<value_type>());
}
namespace detail
{
template <typename BidirectionalIterator, typename Compare>
KERBAL_CONSTEXPR14
void make_heap(BidirectionalIterator first, BidirectionalIterator last, Compare cmp, std::bidirectional_iterator_tag)
{
typedef BidirectionalIterator iterator;
iterator current_adjust(first);
while (current_adjust != last) {
kerbal::algorithm::push_heap(first, current_adjust, cmp);
++current_adjust;
}
kerbal::algorithm::push_heap(first, last, cmp);
}
template <typename RandomAccessIterator, typename Compare>
KERBAL_CONSTEXPR14
void make_heap(RandomAccessIterator first, RandomAccessIterator last, Compare cmp, std::random_access_iterator_tag)
{
typedef RandomAccessIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::difference_type difference_type;
difference_type dist(kerbal::iterator::distance(first, last));
if (dist == 0) {
return;
}
iterator current_adjust(first + ((dist - 1) / 2));
if (dist % 2 == 0) {
iterator back(last - 1);
if (cmp(*current_adjust, *back)) { //back' < parent back
kerbal::algorithm::iter_swap(back, current_adjust);
}
}
while (current_adjust != first) {
--current_adjust;
kerbal::algorithm::detail::adjust_down_unguarded(first, current_adjust, last, cmp);
}
}
} // namespace detail
template <typename BidirectionalIterator, typename Compare>
KERBAL_CONSTEXPR14
void make_heap(BidirectionalIterator first, BidirectionalIterator last, Compare cmp)
{
kerbal::algorithm::detail::make_heap(first, last, cmp, kerbal::iterator::iterator_category(first));
}
template <typename BidirectionalIterator>
KERBAL_CONSTEXPR14
void make_heap(BidirectionalIterator first, BidirectionalIterator last)
{
typedef BidirectionalIterator iterator;
typedef typename kerbal::iterator::iterator_traits<iterator>::value_type value_type;
kerbal::algorithm::make_heap(first, last, kerbal::compare::less<value_type>());
}
} // namespace algorithm
} // namespace kerbal
#endif // KERBAL_ALGORITHM_HEAP_HPP