STLdoc
STLdocumentation
|
Guarded loser/tournament tree. More...
#include <parallel/losertree.h>
Classes | |
struct | _Loser |
Internal representation of a _LoserTree element. More... | |
Public Member Functions | |
_LoserTreeBase (unsigned int __k, _Compare __comp) | |
The constructor. More... | |
~_LoserTreeBase () | |
The destructor. More... | |
void | __insert_start (const _Tp &__key, int __source, bool __sup) |
Initializes the sequence "_M_source" with the element "__key". More... | |
int | __get_min_source () |
Protected Attributes | |
unsigned int | _M_ik |
unsigned int | _M_k |
unsigned int | _M_offset |
unsigned int | _M_log_k |
_Loser * | _M_losers |
_LoserTree __elements. More... | |
_Compare | _M_comp |
_Compare to use. More... | |
bool | _M_first_insert |
State flag that determines whether the _LoserTree is empty. More... | |
Guarded loser/tournament tree.
The smallest element is at the top.
Guarding is done explicitly through one flag _M_sup per element, inf is not needed due to a better initialization routine. This is a well-performing variant.
_Tp | the element type |
_Compare | the comparator to use, defaults to std::less<_Tp> |
|
inline |
The constructor.
__k | The number of sequences to merge. |
__comp | The comparator to use. |
|
inline |
The destructor.
|
inline |
|
inline |
Initializes the sequence "_M_source" with the element "__key".
__key | the element to insert |
__source | __index of the __source __sequence |
__sup | flag that determines whether the value to insert is an explicit __supremum. |
|
protected |
_Compare to use.
|
protected |
State flag that determines whether the _LoserTree is empty.
Only used for building the _LoserTree.
|
protected |
|
protected |
|
protected |
log_2{_M_k}
|
protected |
_LoserTree __elements.
|
protected |