Lists of graph objects (like nodes, edges, etc.). More...
#include <ogdf/basic/GraphList.h>
Public Types | |
using | iterator = GraphIterator< T * > |
Provides a bidirectional iterator to an object in the container. More... | |
using | reverse_iterator = GraphReverseIterator< T * > |
Provides a bidirectional reverse iterator to an object in the container. More... | |
using | value_type = T * |
The value type (a pointer to a specific graph object) More... | |
Public Member Functions | |
GraphList () | |
Constructs an empty list. More... | |
~GraphList () | |
Destruction: deletes all elements. More... | |
iterator | begin () const |
Returns an iterator to the first element in the container. More... | |
void | clear () |
Removes all elements from the list and deletes them. More... | |
void | consistencyCheck () const |
Asserts consistency of this list. More... | |
void | del (T *pX) |
Removes element pX from the list and deletes it. More... | |
void | delPure (T *pX) |
Only removes element pX from the list; does not delete it. More... | |
bool | empty () const |
Returns true iff the list is empty. More... | |
iterator | end () const |
Returns an iterator to the one-past-last element in the container. More... | |
T * | head () const |
Returns the first element in the list. More... | |
void | insertAfter (T *pX, T *pY) |
Inserts element pX after element pY . More... | |
void | insertBefore (T *pX, T *pY) |
Inserts element pX before element pY . More... | |
void | move (T *pX, GraphList< T > &L) |
Moves element pX to list L and inserts it at the end. More... | |
void | move (T *pX, GraphList< T > &L, T *pY, Direction dir) |
Moves element pX to list L and inserts it before or after pY . More... | |
void | moveAfter (T *pX, T *pY) |
Moves element pX from its current position to a position after pY . More... | |
void | moveBefore (T *pX, T *pY) |
Moves element pX from its current position to a position before pY . More... | |
void | permute () |
Permutes all list elements. More... | |
template<class RNG > | |
void | permute (RNG &rng) |
Permutes all list elements. More... | |
void | pushBack (T *pX) |
Adds element pX at the end of the list. More... | |
reverse_iterator | rbegin () const |
Returns a reverse iterator to the last element in the container. More... | |
reverse_iterator | rend () const |
Returns a reverse iterator to the one-before-first element in the container. More... | |
void | reverse () |
Reverses the order of the list elements. More... | |
int | size () const |
Returns the size of the list. More... | |
template<class LIST > | |
void | sort (const LIST &newOrder) |
Sorts the list according to newOrder . More... | |
template<class IT > | |
void | sort (IT begin, IT end) |
Sorts the list according to the range defined by two iterators. More... | |
void | swap (T *pX, T *pY) |
Exchanges the positions of pX and pY in the list. More... | |
T * | tail () const |
Returns the last element in the list. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ogdf::internal::GraphListBase | |
GraphListBase () | |
Constructs an empty list. More... | |
~GraphListBase () | |
Destruction. More... | |
void | consistencyCheck () const |
Asserts consistency of this list. More... | |
void | del (GraphElement *pX) |
Removes element pX from the list. More... | |
bool | empty () const |
Returns true iff the list is empty. More... | |
void | insertAfter (GraphElement *pX, GraphElement *pY) |
Inserts element pX after element pY . More... | |
void | insertBefore (GraphElement *pX, GraphElement *pY) |
Inserts element pX before element pY . More... | |
void | permute () |
Permutes all list elements. More... | |
template<class RNG > | |
void | permute (RNG &rng) |
Permutes all list elements. More... | |
void | pushBack (GraphElement *pX) |
Adds element pX at the end of the list. More... | |
void | reverse () |
Reverses the order of the list elements. More... | |
int | size () const |
Returns the size of the list. More... | |
template<class LIST > | |
void | sort (const LIST &newOrder) |
Sorts the list according to newOrder . More... | |
template<class IT > | |
void | sort (IT begin, IT end) |
Sorts the list according to the range defined by two iterators. More... | |
void | swap (GraphElement *pX, GraphElement *pY) |
Exchanges the positions of pX and pY in the list. More... | |
Protected Attributes inherited from ogdf::internal::GraphListBase | |
GraphElement * | m_head |
Pointer to the first element in the list. More... | |
int | m_size |
The size of the list. More... | |
GraphElement * | m_tail |
Pointer to the last element in the list. More... | |
Lists of graph objects (like nodes, edges, etc.).
The template type T must be a class derived from GraphElement.
Definition at line 301 of file GraphList.h.
using ogdf::internal::GraphList< T >::iterator = GraphIterator<T*> |
Provides a bidirectional iterator to an object in the container.
Definition at line 306 of file GraphList.h.
using ogdf::internal::GraphList< T >::reverse_iterator = GraphReverseIterator<T*> |
Provides a bidirectional reverse iterator to an object in the container.
Definition at line 308 of file GraphList.h.
using ogdf::internal::GraphList< T >::value_type = T* |
The value type (a pointer to a specific graph object)
Definition at line 304 of file GraphList.h.
|
inline |
Constructs an empty list.
Definition at line 311 of file GraphList.h.
|
inline |
Destruction: deletes all elements.
Definition at line 314 of file GraphList.h.
|
inline |
Returns an iterator to the first element in the container.
Definition at line 385 of file GraphList.h.
|
inline |
Removes all elements from the list and deletes them.
Definition at line 376 of file GraphList.h.
|
inline |
Asserts consistency of this list.
Definition at line 269 of file GraphList.h.
|
inline |
Removes element pX
from the list and deletes it.
Definition at line 367 of file GraphList.h.
|
inline |
Only removes element pX
from the list; does not delete it.
Definition at line 373 of file GraphList.h.
|
inline |
Returns true iff the list is empty.
Definition at line 92 of file GraphList.h.
|
inline |
Returns an iterator to the one-past-last element in the container.
Definition at line 388 of file GraphList.h.
|
inline |
Returns the first element in the list.
Definition at line 324 of file GraphList.h.
|
inline |
Inserts element pX
after element pY
.
Definition at line 333 of file GraphList.h.
|
inline |
Inserts element pX
before element pY
.
Definition at line 336 of file GraphList.h.
|
inline |
Moves element pX
to list L
and inserts it at the end.
Definition at line 349 of file GraphList.h.
|
inline |
Moves element pX
to list L
and inserts it before or after pY
.
Definition at line 339 of file GraphList.h.
|
inline |
Moves element pX
from its current position to a position after pY
.
Definition at line 355 of file GraphList.h.
|
inline |
Moves element pX
from its current position to a position before pY
.
Definition at line 361 of file GraphList.h.
|
inline |
Permutes all list elements.
Definition at line 262 of file GraphList.h.
|
inline |
Permutes all list elements.
Definition at line 235 of file GraphList.h.
|
inline |
Adds element pX
at the end of the list.
Definition at line 330 of file GraphList.h.
|
inline |
Returns a reverse iterator to the last element in the container.
Definition at line 391 of file GraphList.h.
|
inline |
Returns a reverse iterator to the one-before-first element in the container.
Definition at line 394 of file GraphList.h.
|
inline |
Reverses the order of the list elements.
Definition at line 176 of file GraphList.h.
|
inline |
Returns the size of the list.
Definition at line 89 of file GraphList.h.
|
inline |
Sorts the list according to newOrder
.
Definition at line 151 of file GraphList.h.
|
inline |
Sorts the list according to the range defined by two iterators.
Definition at line 159 of file GraphList.h.
|
inline |
Exchanges the positions of pX
and pY
in the list.
Definition at line 401 of file GraphList.h.
|
inline |
Returns the last element in the list.
Definition at line 327 of file GraphList.h.