|
| ListPure () |
| Constructs an empty doubly linked list. More...
|
|
| ListPure (const ListPure< E > &L) |
| Constructs a doubly linked list that is a copy of L . More...
|
|
| ListPure (ListPure< E > &&L) noexcept |
| Constructs a doubly linked list containing the elements of L (move semantics). More...
|
|
| ListPure (std::initializer_list< E > init) |
| Constructs a doubly linked list containing the elements in init . More...
|
|
virtual | ~ListPure () |
| Destructor. More...
|
|
|
These methods provide simple access without changing the list.
|
bool | empty () const |
| Returns true iff the list is empty. More...
|
|
virtual int | size () const |
| Returns the number of elements in the list. More...
|
|
const_reference | front () const |
| Returns a const reference to the first element. More...
|
|
reference | front () |
| Returns a reference to the first element. More...
|
|
const_reference | back () const |
| Returns a const reference to the last element. More...
|
|
reference | back () |
| Returns a reference to the last element. More...
|
|
const_iterator | get (int pos) const |
| Returns a const iterator pointing to the element at position pos . More...
|
|
iterator | get (int pos) |
| Returns an iterator pointing to the element at position pos . More...
|
|
int | pos (const_iterator it) const |
| Returns the position (starting with 0) of iterator it in the list. More...
|
|
|
These methods return bidirectional iterators to elements in the list and allow to iterate over the elements in linear or cyclic order.
|
iterator | begin () |
| Returns an iterator to the first element of the list. More...
|
|
const_iterator | begin () const |
| Returns a const iterator to the first element of the list. More...
|
|
const_iterator | cbegin () const |
| Returns a const iterator to the first element of the list. More...
|
|
iterator | end () |
| Returns an iterator to one-past-last element of the list. More...
|
|
const_iterator | end () const |
| Returns a const iterator to one-past-last element of the list. More...
|
|
const_iterator | cend () const |
| Returns a const iterator to one-past-last element of the list. More...
|
|
reverse_iterator | rbegin () |
| Returns an iterator to the last element of the list. More...
|
|
const_reverse_iterator | rbegin () const |
| Returns a const iterator to the last element of the list. More...
|
|
const_reverse_iterator | crbegin () const |
| Returns a const iterator to the last element of the list. More...
|
|
reverse_iterator | rend () |
| Returns an iterator to one-before-first element of the list. More...
|
|
const_reverse_iterator | rend () const |
| Returns a const iterator to one-before-first element of the list. More...
|
|
const_reverse_iterator | crend () const |
| Returns a const iterator to one-before-first element of the list. More...
|
|
const_iterator | cyclicSucc (const_iterator it) const |
| Returns a const iterator to the cyclic successor of it . More...
|
|
iterator | cyclicSucc (iterator it) |
| Returns an iterator to the cyclic successor of it . More...
|
|
const_reverse_iterator | cyclicSucc (const_reverse_iterator it) const |
|
reverse_iterator | cyclicSucc (reverse_iterator it) |
|
const_iterator | cyclicPred (const_iterator it) const |
| Returns a const iterator to the cyclic predecessor of it . More...
|
|
iterator | cyclicPred (iterator it) |
| Returns an iterator to the cyclic predecessor of it . More...
|
|
const_reverse_iterator | cyclicPred (const_reverse_iterator it) const |
|
reverse_iterator | cyclicPred (reverse_iterator it) |
|
|
The following operators are provided by lists.
|
ListPure< E > & | operator= (const ListPure< E > &L) |
| Assignment operator. More...
|
|
ListPure< E > & | operator= (ListPure< E > &&L) |
| Assignment operator (move semantics). More...
|
|
bool | operator== (const ListPure< E > &L) const |
| Equality operator. More...
|
|
bool | operator!= (const ListPure< E > &L) const |
| Inequality operator. More...
|
|
|
These method add elements to the list.
|
iterator | pushFront (const E &x) |
| Adds element x at the beginning of the list. More...
|
|
template<class... Args> |
iterator | emplaceFront (Args &&... args) |
| Adds a new element at the beginning of the list. More...
|
|
iterator | pushBack (const E &x) |
| Adds element x at the end of the list. More...
|
|
template<class... Args> |
iterator | emplaceBack (Args &&... args) |
| Adds a new element at the end of the list. More...
|
|
iterator | insert (const E &x, iterator it, Direction dir=Direction::after) |
| Inserts element x before or after it . More...
|
|
iterator | insertBefore (const E &x, iterator it) |
| Inserts element x before it . More...
|
|
iterator | insertAfter (const E &x, iterator it) |
| Inserts element x after it . More...
|
|
|
These method remove elements from the list.
|
void | popFront () |
| Removes the first element from the list. More...
|
|
E | popFrontRet () |
| Removes the first element from the list and returns it. More...
|
|
void | popBack () |
| Removes the last element from the list. More...
|
|
E | popBackRet () |
| Removes the last element from the list and returns it. More...
|
|
void | del (iterator it) |
| Removes it from the list. More...
|
|
bool | removeFirst (const E &x) |
| Removes the first occurrence of x (if any) from the list. More...
|
|
void | clear () |
| Removes all elements from the list. More...
|
|
|
The method allow to change the order of elements within the list, or to move elements to another list.
|
void | exchange (iterator it1, iterator it2) |
| Exchanges the positions of it1 and it2 in the list. More...
|
|
void | moveToFront (iterator it) |
| Moves it to the begin of the list. More...
|
|
void | moveToBack (iterator it) |
| Moves it to the end of the list. More...
|
|
void | moveToSucc (iterator it, iterator itBefore) |
| Moves it after itBefore . More...
|
|
void | moveToPrec (iterator it, iterator itAfter) |
| Moves it before itAfter . More...
|
|
void | moveToFront (iterator it, ListPure< E > &L2) |
| Moves it to the begin of L2 . More...
|
|
void | moveToBack (iterator it, ListPure< E > &L2) |
| Moves it to the end of L2 . More...
|
|
void | moveToSucc (iterator it, ListPure< E > &L2, iterator itBefore) |
| Moves it to list L2 and inserts it after itBefore . More...
|
|
void | moveToPrec (iterator it, ListPure< E > &L2, iterator itAfter) |
| Moves it to list L2 and inserts it before itAfter . More...
|
|
void | conc (ListPure< E > &L2) |
| Appends L2 to this list and makes L2 empty. More...
|
|
void | concFront (ListPure< E > &L2) |
| Prepends L2 to this list and makes L2 empty. More...
|
|
void | swap (ListPure< E > &other) |
| Exchanges the contents of this list and other in constant time. More...
|
|
void | split (iterator it, ListPure< E > &L1, ListPure< E > &L2, Direction dir=Direction::before) |
| Splits the list at element it into lists L1 and L2 . More...
|
|
void | splitAfter (iterator it, ListPure< E > &L2) |
| Splits the list after it . More...
|
|
void | splitBefore (iterator it, ListPure< E > &L2) |
| Splits the list before it . More...
|
|
void | reverse () |
| Reverses the order of the list elements. More...
|
|
|
These methods provide searching for values and sorting the list.
|
ListConstIterator< E > | search (const E &e) const |
| Scans the list for the specified element and returns an iterator to the first occurrence in the list, or an invalid iterator if not found. More...
|
|
ListIterator< E > | search (const E &e) |
| Scans the list for the specified element and returns an iterator to the first occurrence in the list, or an invalid iterator if not found. More...
|
|
template<class COMPARER > |
ListConstIterator< E > | search (const E &e, const COMPARER &comp) const |
| Scans the list for the specified element (using the user-defined comparer) and returns an iterator to the first occurrence in the list, or an invalid iterator if not found. More...
|
|
template<class COMPARER > |
ListIterator< E > | search (const E &e, const COMPARER &comp) |
| Scans the list for the specified element (using the user-defined comparer) and returns an iterator to the first occurrence in the list, or an invalid iterator if not found. More...
|
|
void | quicksort () |
| Sorts the list using Quicksort. More...
|
|
template<class COMPARER > |
void | quicksort (const COMPARER &comp) |
| Sorts the list using Quicksort and comparer comp . More...
|
|
void | bucketSort (int l, int h, BucketFunc< E > &f) |
| Sorts the list using bucket sort. More...
|
|
|
These methods allow to select a random element in the list, or to randomly permute the list.
|
const_iterator | chooseIterator (std::function< bool(const E &)> includeElement=[](const E &) { return true;}, bool isFastTest=true) const |
| Returns an iterator to a random element. More...
|
|
iterator | chooseIterator (std::function< bool(const E &)> includeElement=[](const E &) { return true;}, bool isFastTest=true) |
| Returns an iterator to a random element. More...
|
|
const_reference | chooseElement (std::function< bool(const E &)> includeElement=[](const E &) { return true;}, bool isFastTest=true) const |
| Returns a random element. More...
|
|
reference | chooseElement (std::function< bool(const E &)> includeElement=[](const E &) { return true;}, bool isFastTest=true) |
| Returns a random element. More...
|
|
void | permute () |
| Randomly permutes the elements in the list. More...
|
|
template<class RNG > |
void | permute (RNG &rng) |
| Randomly permutes the elements in the list using random number generator rng . More...
|
|
template<class E>
class ogdf::ListPure< E >
Doubly linked lists.
Use ogdf::ListConstIterator or ogdf::ListIterator in order to iterate over the list.
In contrast to ogdf::List, instances of ogdf::ListPure do not store the length of the list.
- Template Parameters
-
E | is the data type stored in list elements. |
Definition at line 55 of file List.h.