Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
ogdf::PrioritizedMapQueue< E, P, C, Impl, HashFunc > Class Template Reference

Prioritized queue interface wrapper for heaps. More...

#include <ogdf/basic/PriorityQueue.h>

+ Inheritance diagram for ogdf::PrioritizedMapQueue< E, P, C, Impl, HashFunc >:

Public Member Functions

 PrioritizedMapQueue (const C &cmp=C(), int initialSize=128)
 Creates a new queue with the given comparer.
 
- Public Member Functions inherited from ogdf::pq_internal::PrioritizedArrayQueueBase< E, P, C, Impl, Map >
void clear ()
 Removes all elements from this queue.
 
bool contains (const E &element) const
 Returns whether this queue contains that key.
 
void decrease (const E &element, const P &priority)
 Decreases the priority of the given element.
 
void pop ()
 Removes the topmost element from the queue.
 
const Ppriority (const E &element) const
 
void push (const E &element, const P &priority)
 Adds a new element to the queue.
 
- Public Member Functions inherited from ogdf::pq_internal::PrioritizedQueue< E, P, C, Impl >
 PrioritizedQueue (const C &cmp=C(), int initialSize=128)
 
void decrease (Handle pos, const P &priority)
 
Handle push (const E &element, const P &priority)
 Pushes a new element with the respective priority to the queue.
 
const E & topElement () const
 Returns the topmost element in the queue.
 
const PtopPriority () const
 Returns the priority of the topmost element in this queue.
 
- Public Member Functions inherited from ogdf::PriorityQueue< T, C, Impl >
 PriorityQueue (const C &cmp=C(), int initialSize=128)
 Creates empty priority queue.
 
 PriorityQueue (const PriorityQueue &other)
 Copy constructor.
 
template<class InputIt >
 PriorityQueue (InputIt first, InputIt last, const C &cmp=C())
 Creates priority queue with contents of the given range.
 
 PriorityQueue (PriorityQueue &&other)
 Move constructor.
 
 PriorityQueue (std::initializer_list< value_type > init, const C &cmp=C())
 Creates priority queue with contents of the given initializer list.
 
 ~PriorityQueue ()
 Destroys the underlying data structure.
 
void clear ()
 Removes all the entries from the queue.
 
void decrease (handle pos, const T &value)
 Decreases value of the element specified by handle to value.
 
bool empty () const
 Checks whether the queue is empty.
 
void merge (PriorityQueue &other)
 Merges in enqueued values of other queue.
 
PriorityQueueoperator= (PriorityQueue other)
 Copy and move assignment.
 
PriorityQueueoperator= (std::initializer_list< value_type > ilist)
 Assigns the priority queue contents of the given initializer list.
 
void pop ()
 Removes the top element from the heap.
 
handle push (const value_type &value)
 Inserts a new element with given value into the queue.
 
template<class InputIt >
void push (InputIt first, InputIt last)
 Inserts new elements specified by the given range.
 
void push (std::initializer_list< value_type > ilist)
 Inserts new elements specified by the given initializer list.
 
size_type size () const
 Returns the number of enqueued elements.
 
void swap (PriorityQueue &other)
 Swaps the contents.
 
const T & top () const
 Returns reference to the top element in the queue.
 
const T & value (handle pos) const
 Returns the priority of that handle.
 

Private Types

using CustomHashArray = HashArray< E, typename PrioritizedQueue< E, P, C, Impl >::Handle, HashFunc< E > >
 
using SuperQueue = pq_internal::PrioritizedArrayQueueBase< E, P, C, Impl, CustomHashArray >
 

Additional Inherited Members

- Public Types inherited from ogdf::pq_internal::PrioritizedQueue< E, P, C, Impl >
using Handle = typename SuperQueue::handle
 The type of handle for accessing the elements of this queue.
 
- Public Types inherited from ogdf::PriorityQueue< T, C, Impl >
using const_reference = const value_type &
 
using handle = typename SpecImpl::Handle
 
using reference = value_type &
 
using size_type = std::size_t
 
using value_type = T
 
- Protected Types inherited from ogdf::pq_internal::PrioritizedArrayQueueBase< E, P, C, Impl, Map >
using Handle = typename PrioritizedQueue< E, P, C, Impl >::Handle
 
using SuperQueue = PrioritizedQueue< E, P, C, Impl >
 
- Protected Member Functions inherited from ogdf::pq_internal::PrioritizedArrayQueueBase< E, P, C, Impl, Map >
 PrioritizedArrayQueueBase (const C &cmp, int initialSize, const Map &map)
 
- Protected Attributes inherited from ogdf::pq_internal::PrioritizedArrayQueueBase< E, P, C, Impl, Map >
Map m_handles
 

Detailed Description

template<typename E, typename P, class C = std::less<P>, template< typename, class > class Impl = PairingHeap, template< typename > class HashFunc = DefHashFunc>
class ogdf::PrioritizedMapQueue< E, P, C, Impl, HashFunc >

Prioritized queue interface wrapper for heaps.

Much like PrioritizedQueue but each inserted element is treated as a key. As such, the same element might not be inserted twice. This interface does not require the user to keep track of handlers for decreasing the priority of the respective elements.

If node (or edge) is specified as the type of keys to be stored, a ogdf::NodeArray (or ogdf::EdgeArray) is used internally. These types should be chosen whenever possible.

This queue does not support merge operations.

Template Parameters
EDenotes value type of inserted elements.
PDenotes the type of priority.
CDenotes the comparison functor for comparing priorities.
ImplDenotes the underlying heap class.
HashFuncThe hashing function to be used if a ogdf::HashArray is used internally.

Definition at line 407 of file PriorityQueue.h.

Member Typedef Documentation

◆ CustomHashArray

template<typename E , typename P , class C = std::less<P>, template< typename, class > class Impl = PairingHeap, template< typename > class HashFunc = DefHashFunc>
using ogdf::PrioritizedMapQueue< E, P, C, Impl, HashFunc >::CustomHashArray = HashArray<E, typename PrioritizedQueue<E, P, C, Impl>::Handle, HashFunc<E> >
private

Definition at line 411 of file PriorityQueue.h.

◆ SuperQueue

template<typename E , typename P , class C = std::less<P>, template< typename, class > class Impl = PairingHeap, template< typename > class HashFunc = DefHashFunc>
using ogdf::PrioritizedMapQueue< E, P, C, Impl, HashFunc >::SuperQueue = pq_internal::PrioritizedArrayQueueBase<E, P, C, Impl, CustomHashArray>
private

Definition at line 413 of file PriorityQueue.h.

Constructor & Destructor Documentation

◆ PrioritizedMapQueue()

template<typename E , typename P , class C = std::less<P>, template< typename, class > class Impl = PairingHeap, template< typename > class HashFunc = DefHashFunc>
ogdf::PrioritizedMapQueue< E, P, C, Impl, HashFunc >::PrioritizedMapQueue ( const C &  cmp = C(),
int  initialSize = 128 
)
inline

Creates a new queue with the given comparer.

Parameters
cmpThe comparer to be used.
initialSizeThe initial capacity preference (ignored if not supported by underlying heap).

Definition at line 422 of file PriorityQueue.h.


The documentation for this class was generated from the following file: