-
Notifications
You must be signed in to change notification settings - Fork 0
/
updatable_priority_queue.cc
665 lines (587 loc) · 25.4 KB
/
updatable_priority_queue.cc
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
// -*- C++ -*-
//===--------------------------- updatable_priority_queue ------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef _PEW_UPQ
#define _PEW_UPQ
/*
queue synopsis
namespace pewulfman
{
class updatable_priority_queue
{
public:
typedef Container container_type;
typedef Map map_type;
typedef typename container_type::value_type value_type;
typedef typename container_type::reference reference;
typedef typename container_type::const_reference const_reference;
typedef typename container_type::size_type size_type;
protected:
container_type c;
map_type m;
Compare comp;
public:
updatable_priority_queue() = default;
~updatable_priority_queue() = default;
updatable_priority_queue(const priority_queue& q) = default;
updatable_priority_queue(priority_queue&& q) = default;
updatable_priority_queue& operator=(const priority_queue& q) = default;
updatable_priority_queue& operator=(priority_queue&& q) = default;
explicit updatable_priority_queue(const Compare& comp);
updatable_priority_queue(const Compare& comp, const container_type& c);
explicit updatable_priority_queue(const Compare& comp, container_type&& c);
template <class InputIterator>
updatable_priority_queue(InputIterator first, InputIterator last,
const Compare& comp = Compare());
template <class InputIterator>
updatable_priority_queue(InputIterator first, InputIterator last,
const Compare& comp, const container_type& c);
template <class InputIterator>
updatable_priority_queue(InputIterator first, InputIterator last,
const Compare& comp, container_type&& c);
template <class Alloc>
explicit updatable_priority_queue(const Alloc& a);
template <class Alloc>
updatable_priority_queue(const Compare& comp, const Alloc& a);
template <class Alloc>
updatable_priority_queue(const Compare& comp, const container_type& c,
const Alloc& a);
template <class Alloc>
updatable_priority_queue(const Compare& comp, container_type&& c,
const Alloc& a);
template <class Alloc>
updatable_priority_queue(const priority_queue& q, const Alloc& a);
template <class Alloc>
updatable_priority_queue(priority_queue&& q, const Alloc& a);
bool empty() const;
size_type size() const;
const_reference top() const;
void push(const value_type& v);
void push(value_type&& v);
template <class... Args> void emplace(Args&&... args);
void pop();
void update_priority(_Value, _Tp);
void update_priority(value_type&);
void swap(priority_queue& q)
noexcept(is_nothrow_swappable_v<Container> &&
is_nothrow_swappable_v<Comp>)
};
template <class Compare, class Container>
updatable_priority_queue(Compare, Container)
-> updatable_priority_queue<typename Container::value_type, Container, Compare>; // C++17
template<class InputIterator,
class Compare = less<typename iterator_traits<InputIterator>::value_type>,
class Container = vector<typename iterator_traits<InputIterator>::value_type>>
updatable_priority_queue(InputIterator, InputIterator, Compare = Compare(), Container = Container())
-> updatable_priority_queue<typename iterator_traits<InputIterator>::value_type, Container, Compare>; // C++17
template<class Compare, class Container, class Allocator>
updatable_priority_queue(Compare, Container, Allocator)
-> updatable_priority_queue<typename Container::value_type, Container, Compare>; // C++17
template <class T, class Container, class Compare>
void swap(updatable_priority_queue<T, Container, Compare>& x,
updatable_priority_queue<T, Container, Compare>& y)
noexcept(noexcept(x.swap(y)));
} // std
*/
#include "__config"
#include <vector>
#include <unordered_map>
#include <functional>
#include <algorithm>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header
#endif
using namespace std;
namespace pewulfman
{
template <class _Value, class _Tp, class _Container = vector<pair< _Value, _Tp>>,
class _Compare = less<typename _Container::value_type::second_type>,
class _Map = unordered_map< _Value,typename iterator_traits<typename _Container::iterator>::difference_type>>
class updatable_priority_queue
{
public:
typedef _Container container_type;
typedef _Compare value_compare;
typedef _Map map_type;
typedef typename container_type::value_type value_type;
typedef typename container_type::reference reference;
typedef typename container_type::const_reference const_reference;
typedef typename container_type::size_type size_type;
typedef typename container_type::iterator iter_type;
typedef typename iterator_traits<iter_type>::difference_type diff_type;
//static_assert((is_same<_Tp, value_type::second_type>::value), "" );
protected:
container_type c;
map_type m;
value_compare comp;
public:
updatable_priority_queue() _NOEXCEPT_(is_nothrow_default_constructible<container_type>::value &&
is_nothrow_default_constructible<map_type>::value &&
is_nothrow_default_constructible<value_compare>::value)
: c(), m(), comp() {}
updatable_priority_queue(const updatable_priority_queue& __q) : c(__q.c), m(__q.m), comp(__q.comp) {}
updatable_priority_queue& operator=(const updatable_priority_queue& __q)
{c = __q.c; m= __q.m; comp = __q.comp; return *this;}
#ifndef _LIBCPP_CXX03_LANG
updatable_priority_queue(updatable_priority_queue&& __q)
_NOEXCEPT_(is_nothrow_move_constructible<container_type>::value &&
is_nothrow_move_constructible<map_type>::value &&
is_nothrow_move_constructible<value_compare>::value)
: c(move(__q.c)), m(move(__q.m)), comp(move(__q.comp)) {}
updatable_priority_queue& operator=(updatable_priority_queue&& __q)
_NOEXCEPT_(is_nothrow_move_assignable<container_type>::value &&
is_nothrow_move_assignable<map_type>::value &&
is_nothrow_move_assignable<value_compare>::value)
{c = move(__q.c); m=move(__q.comp); comp = move(__q.comp); return *this;}
#endif // _LIBCPP_CXX03_LANG
explicit updatable_priority_queue(const value_compare& __comp)
: c(), comp(__comp), m() {}
updatable_priority_queue(const value_compare& __comp, const container_type& __c);
#ifndef _LIBCPP_CXX03_LANG
explicit updatable_priority_queue(const value_compare& __comp, container_type&& __c);
#endif
template <class _InputIter>
updatable_priority_queue(_InputIter __f, _InputIter __l,
const value_compare& __comp = value_compare());
template <class _InputIter>
updatable_priority_queue(_InputIter __f, _InputIter __l,
const value_compare& __comp, const container_type& __c);
#ifndef _LIBCPP_CXX03_LANG
template <class _InputIter>
updatable_priority_queue(_InputIter __f, _InputIter __l,
const value_compare& __comp, container_type&& __c);
#endif // _LIBCPP_CXX03_LANG
template <class _Alloc>
explicit updatable_priority_queue(const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type* = 0);
template <class _Alloc>
updatable_priority_queue(const value_compare& __comp, const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type* = 0);
template <class _Alloc>
updatable_priority_queue(const value_compare& __comp, const container_type& __c,
const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type* = 0);
template <class _Alloc>
updatable_priority_queue(const updatable_priority_queue& __q, const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type* = 0);
#ifndef _LIBCPP_CXX03_LANG
template <class _Alloc>
updatable_priority_queue(const value_compare& __comp, container_type&& __c,
const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type* = 0);
template <class _Alloc>
updatable_priority_queue(updatable_priority_queue&& __q, const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type* = 0);
#endif // _LIBCPP_CXX03_LANG
bool empty() const {return c.empty();}
size_type size() const {return c.size();}
const_reference top() const {return c.front();}
void push(const value_type& __v);
#ifndef _LIBCPP_CXX03_LANG
void push(value_type&& __v);
//template <class... _Args>
//void emplace(_Args&&... __args);
#endif // _LIBCPP_CXX03_LANG
void pop();
void update_priority(const _Value&, const _Tp&);
void update_priority(const value_type&);
void swap(updatable_priority_queue& __q)
_NOEXCEPT_(__is_nothrow_swappable<container_type>::value &&
__is_nothrow_swappable<map_type>::value &&
__is_nothrow_swappable<value_compare>::value);
protected :
void __sift_up(iter_type __first, iter_type __last, _Compare __comp, diff_type __len);
void __push_heap(iter_type __first, iter_type __last, _Compare __comp);
void __sift_down(iter_type __first, iter_type /*__last*/, _Compare __comp, diff_type __len, iter_type __start);
void __pop_heap(iter_type __first, iter_type __last, _Compare __comp, diff_type __len);
};
#ifndef _LIBCPP_HAS_NO_DEDUCTION_GUIDES
/*template <class _Compare,
class _Container,
class = typename enable_if<!__is_allocator<_Compare>::value, nullptr_t>::type,
class = typename enable_if<!__is_allocator<_Container>::value, nullptr_t>::type
>
priority_queue(_Compare, _Container)
-> priority_queue<typename _Container::value_type, _Container, _Compare>;
template<class _InputIterator,
class _Compare = less<typename iterator_traits<_InputIterator>::value_type>,
class _Container = vector<typename iterator_traits<_InputIterator>::value_type>,
class = typename enable_if< __is_input_iterator<_InputIterator>::value, nullptr_t>::type,
class = typename enable_if<!__is_allocator<_Compare>::value, nullptr_t>::type,
class = typename enable_if<!__is_allocator<_Container>::value, nullptr_t>::type
>
priority_queue(_InputIterator, _InputIterator, _Compare = _Compare(), _Container = _Container())
-> priority_queue<typename iterator_traits<_InputIterator>::value_type, _Container, _Compare>;
template<class _Compare,
class _Container,
class _Alloc,
class = typename enable_if<!__is_allocator<_Compare>::value, nullptr_t>::type,
class = typename enable_if<!__is_allocator<_Container>::value, nullptr_t>::type,
class = typename enable_if< __is_allocator<_Alloc>::value, nullptr_t>::type
>
priority_queue(_Compare, _Container, _Alloc)
-> priority_queue<typename _Container::value_type, _Container, _Compare>;
*/
#endif
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(const _Compare& __comp,
const container_type& __c)
: c(__c),
comp(__comp)
{
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(const value_compare& __comp,
container_type&& __c)
: c(move(__c)),
comp(__comp)
{
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
#endif // _LIBCPP_CXX03_LANG
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
template <class _InputIter>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(_InputIter __f, _InputIter __l,
const value_compare& __comp)
: c(__f, __l),
comp(__comp)
{
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
template <class _InputIter>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(_InputIter __f, _InputIter __l,
const value_compare& __comp,
const container_type& __c)
: c(__c),
comp(__comp)
{
c.insert(c.end(), __f, __l);
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
template <class _InputIter>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(_InputIter __f, _InputIter __l,
const value_compare& __comp,
container_type&& __c)
: c(move(__c)),
comp(__comp)
{
c.insert(c.end(), __f, __l);
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
#endif // _LIBCPP_CXX03_LANG
/*
template <class _Value, class _Tp, class _Container,class _Compare,class _Map>
template <class _Alloc>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::priority_queue(const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type*)
: c(__a)
{
}
template <class _Tp, class _Container, class _Compare>
template <class _Alloc>
inline
priority_queue<_Tp, _Container, _Compare>::priority_queue(const value_compare& __comp,
const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type*)
: c(__a),
comp(__comp)
{
}
*/
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
template <class _Alloc>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(const value_compare& __comp,
const container_type& __c,
const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type*)
: c(__c, __a),
comp(__comp)
{
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
template <class _Alloc>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(const updatable_priority_queue& __q,
const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type*)
: c(__q.c, __a),
comp(__q.comp)
{
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
template <class _Alloc>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(const value_compare& __comp,
container_type&& __c,
const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type*)
: c(move(__c), __a),
comp(__comp)
{
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
template <class _Alloc>
inline
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::updatable_priority_queue(updatable_priority_queue&& __q,
const _Alloc& __a,
typename enable_if<uses_allocator<container_type,
_Alloc>::value>::type*)
: c(move(__q.c), __a),
comp(move(__q.comp))
{
make_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
#endif // _LIBCPP_CXX03_LANG
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::push(const value_type& __v)
{
c.push_back(__v);
m.insert({__v.first,--c.end()-c.begin()});
__push_heap(c.begin(), c.end(), comp);
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::push(value_type&& __v)
{
c.push_back(move(__v));
m.insert({move(__v.first),--c.end()-c.begin()});
__push_heap(c.begin(), c.end(), comp);
}
template <class _Tp, class _Container, class _Compare>
template <class... _Args>
inline
void
priority_queue<_Tp, _Container, _Compare>::emplace(_Args&&... __args)
{
c.emplace_back(forward<_Args>(__args)...);
push_heap(c.begin(), c.end(), comp);
for (iter_type it=c.begin(); it!=c.end(); it++){
m.insert({it->first, it-c.begin()});
}
}
#endif // _LIBCPP_CXX03_LANG
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::pop()
{
__pop_heap(c.begin(), c.end(), comp, c.end()-c.begin());
m.erase((--c.end())->first);
c.pop_back();
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::swap(updatable_priority_queue& __q)
_NOEXCEPT_(__is_nothrow_swappable<container_type>::value &&
__is_nothrow_swappable<map_type>::value &&
__is_nothrow_swappable<value_compare>::value)
{
std::swap(c, __q.c);
std::swap(m, __q.m);
std::swap(comp, __q.comp);
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
typename enable_if<
__is_swappable<_Container>::value
&& __is_swappable<_Map>::value
&& __is_swappable<_Compare>::value,
void
>::type
swap(updatable_priority_queue<_Tp, _Container, _Compare>& __x,
updatable_priority_queue<_Tp, _Container, _Compare>& __y)
_NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
{
__x.swap(__y);
}
/*
template <class _Value, class _Tp, class _Container, class _Compare, class _Map, class _Alloc>
struct _LIBCPP_TEMPLATE_VIS std::uses_allocator<updatable_priority_queue<_Tp, _Container, _Compare>, _Alloc>
: public uses_allocator<_Container, _Alloc>
{
};
*/
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::update_priority(const _Value& __v, const _Tp& __new){
iter_type __item = c.begin()+m[__v];
_Tp __old = __item->second;
__item->second = __new;
if (comp(__old,__new)){
__item++;
__sift_up(c.begin(),__item,comp,__item-c.begin());
}else{
__sift_down(c.begin(),c.end(),comp,c.end()-c.begin(), __item);
}
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::update_priority(const value_type& vt){
update_priority(vt.first, vt.second);
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::__pop_heap(iter_type __first, iter_type __last, _Compare __comp, diff_type __len)
{
if (__len > 1)
{
std::swap(*__first, *--__last);
__sift_down(__first, __last, __comp, __len-1, __first);
}
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::__sift_up(iter_type __first, iter_type __last, _Compare __comp, diff_type __len)
{
if (__len > 1)
{
__len = (__len - 2) / 2;
iter_type __ptr = __first + __len;
if (__comp(__ptr->second, (--__last)->second))
{
value_type __t(move(*__last));
do
{
*__last = move(*__ptr);
m[__last->first] = __last - c.begin();
__last = __ptr;
if (__len == 0)
break;
__len = (__len - 1) / 2;
__ptr = __first + __len;
} while (__comp(__ptr->second, __t.second));
*__last = move(__t);
m[__last->first] = __last - c.begin();
}
}
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::__push_heap(iter_type __first, iter_type __last, _Compare __comp)
{
#ifdef _LIBCPP_DEBUG
typedef typename add_lvalue_reference<__debug_less<_Compare> >::type _Comp_ref;
__debug_less<_Compare> __c(__comp);
__sift_up(__first, __last, __c, __last - __first);
#else // _LIBCPP_DEBUG
typedef typename add_lvalue_reference<_Compare>::type _Comp_ref;
__sift_up(__first, __last, __comp, __last - __first);
#endif // _LIBCPP_DEBUG
}
template <class _Value, class _Tp, class _Container, class _Compare, class _Map>
inline
void
updatable_priority_queue<_Value, _Tp, _Container, _Compare, _Map>::__sift_down(iter_type __first, iter_type /*__last*/,
_Compare __comp,
diff_type __len,
iter_type __start)
{
// left-child of __start is at 2 * __start + 1
// right-child of __start is at 2 * __start + 2
diff_type __child = __start - __first;
if (__len < 2 || (__len - 2) / 2 < __child)
return;
__child = 2 * __child + 1;
iter_type __child_i = __first + __child;
if ((__child + 1) < __len && __comp(__child_i->second, (__child_i + 1)->second)) {
// right-child exists and is greater than left-child
++__child_i;
++__child;
}
// check if we are in heap-order
if (__comp(__child_i->second, __start->second))
// we are, __start is larger than it's largest child
return;
value_type __top(move(*__start));
do
{
// we are not in heap-order, swap the parent with it's largest child
*__start = move(*__child_i);
m[__start->first] = __start-c.begin();
__start = __child_i;
if ((__len - 2) / 2 < __child)
break;
// recompute the child based off of the updated parent
__child = 2 * __child + 1;
__child_i = __first + __child;
if ((__child + 1) < __len && __comp(__child_i->second, (__child_i + 1)->second)) {
// right-child exists and is greater than left-child
++__child_i;
++__child;
}
// check if we are in heap-order
} while (!__comp(__child_i->second, __top.second));
m[__start->first] = __start-c.begin();
*__start = move(__top);
}
}; //namespace pewulfman
#endif // _PEW_UPQ