Alps
2.0.2
|
#include <AlpsPriorityQueue.h>
Public Member Functions | |
AlpsPriorityQueue () | |
AlpsPriorityQueue (AlpsSearchStrategy< T > &compare) | |
const std::vector< T > & | getContainer () const |
Return a const reference to the container. More... | |
void | setComparison (AlpsSearchStrategy< T > &c) |
Set comparison function and resort heap. More... | |
T | top () const |
Return the top element of the heap. More... | |
void | push (T x) |
Add a element to the heap. More... | |
void | pop () |
Remove the top element from the heap. More... | |
bool | empty () const |
Return true for an empty vector. More... | |
size_t | size () const |
Return the size of the vector. More... | |
void | clear () |
Remove all elements from the vector. More... | |
Private Member Functions | |
AlpsPriorityQueue (const AlpsPriorityQueue &) | |
AlpsPriorityQueue & | operator= (const AlpsPriorityQueue &) |
Private Attributes | |
std::vector< T > | vec_ |
AlpsCompare< T > | comparison_ |
Definition at line 38 of file AlpsPriorityQueue.h.
|
private |
|
inline |
Definition at line 48 of file AlpsPriorityQueue.h.
|
inline |
Definition at line 49 of file AlpsPriorityQueue.h.
|
private |
|
inline |
Return a const reference to the container.
Definition at line 54 of file AlpsPriorityQueue.h.
|
inline |
Set comparison function and resort heap.
Definition at line 57 of file AlpsPriorityQueue.h.
|
inline |
Return the top element of the heap.
Definition at line 63 of file AlpsPriorityQueue.h.
|
inline |
Add a element to the heap.
Definition at line 66 of file AlpsPriorityQueue.h.
|
inline |
Remove the top element from the heap.
Definition at line 72 of file AlpsPriorityQueue.h.
|
inline |
Return true for an empty vector.
Definition at line 78 of file AlpsPriorityQueue.h.
|
inline |
Return the size of the vector.
Definition at line 83 of file AlpsPriorityQueue.h.
|
inline |
Remove all elements from the vector.
But not delete them.
Definition at line 88 of file AlpsPriorityQueue.h.
|
private |
Definition at line 44 of file AlpsPriorityQueue.h.
|
private |
Definition at line 45 of file AlpsPriorityQueue.h.