This class implements a simple, singly-linked list of objects implementing the base class Queue::Node.
More...
template<typename T, template< typename V > class ContainerType>
class Queue< T, ContainerType >
This class implements a simple, singly-linked list of objects implementing the base class Queue::Node.
Queue::Node itself merely adds an attribute _next_node
to the parent object, allowing to enqueue the element into a single Queue.
- Warning
- One instance of a class inheriting from Queue::Node can be at most in one Queue
The following example illustrates the usage of Queue::Node :
class Foo : public Queue<Foo>::Node {
// ...
}
This Queue implementation supports using C++11 range expressions:
Queue<Foo> list;
Foo a, b, c;
list.enqueue(&a);
list.enqueue(&b);
list.enqueue(&c);
for(Foo * elem : list) {
// use elem
}
- Note
- Implementation details: Unlike in other implementations, the tail pointer does not point to the last element in the queue, but to the last element's next pointer. As long as the queue is empty, tail points to the queue's head pointer; therefore inserting can be implemented without further special cases handling empty queues. The check for emptiness can, however, not be omitted on removal.
template<typename T , template< typename V > class ContainerType>
T * Queue< T, ContainerType >::remove |
( |
T * |
item, |
|
|
bool(*)(T *, T *) |
cmp = [] (T* a, T* b) {return a == b;} |
|
) |
| |
|
inline |
Removes and returns a single element from the queue.
This method removes and returns a single element (provided via parameter item
) from the queue, irrespective of its position. By default, this function compares pointers; it is possible to override the default comparator lambda function by specifying a function type as second parameter.
- Parameters
-
item | Element to be removed. |
cmp | Comparator function. |
- Returns
- Returns the removed element, or
0
if no element matches.