All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
IsList< T > Class Template Reference Generic single linked list.Class IsList implements an intrusive single linked list of elements of a template class T. As an intrusive list, the objects of type T must provide methods next() for setting and inquiring a pointer to the next element in a list. The user is responsible for not modifying the next() pointer of elements currently residing in a list, which may destroy the lists integrity. For this, class IsList provides enough methods for modifying a list in a save way. See the method list for a description. More...
Inheritance diagram for IsList< T >:
![]()
Detailed Descriptiontemplate<class T>
|
|
explicit |
void append | ( | T * | elem | ) |
appends elem
to IsList.
Definition at line 122 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::append(), and IsList< soplex::SVSet::DLPSV >::insert().
void append | ( | IsList< T > & | list | ) |
appends all elements of list
to IsList.
Appending one list to another keeps the appended list
. Instead, list
remains an own IsList which is then part of the concatenated list. This means that modifying list
will modify the concateneted list as well and vice versa. The programmer is responsible for such changes not to yield inconsistent lists.
int find | ( | const T * | elem | ) | const |
returns the position of element elem
within IsList.
Definition at line 328 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::insert(), IdList< soplex::SVSet::DLPSV >::insert(), IsList< soplex::SVSet::DLPSV >::isConsistent(), IsList< soplex::SVSet::DLPSV >::IsList(), IsList< soplex::SVSet::DLPSV >::remove(), IdList< soplex::SVSet::DLPSV >::remove(), IsList< soplex::SVSet::DLPSV >::remove_next(), and IsList< soplex::SVSet::DLPSV >::sublist().
T* first | ( | ) | const |
returns the IsList's first element.
Definition at line 288 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::insert(), IsList< soplex::SVSet::DLPSV >::isConsistent(), and IsList< soplex::SVSet::DLPSV >::move().
void insert | ( | T * | elem, |
T * | after | ||
) |
void insert | ( | IsList< T > & | list, |
T * | after | ||
) |
inserts all elements of list
after element after
of an IsList.
Inserting one list into another keeps the appended list
. Instead, list
remains an own IsList which is then part of the concatenated list. This means that modifying list
will modify the concateneted list as well and vice versa. The programmer is responsible for such changes not to yield inconsistent lists.
bool isConsistent | ( | ) | const |
consistency check.
Definition at line 390 of file islist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::isConsistent(), and IsList< soplex::SVSet::DLPSV >::IsList().
T* last | ( | ) | const |
returns the IsList's last element.
Definition at line 294 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::insert(), IsList< soplex::SVSet::DLPSV >::isConsistent(), IsList< soplex::SVSet::DLPSV >::move(), and IsList< soplex::SVSet::DLPSV >::remove_next().
int length | ( | ) | const |
void move | ( | ptrdiff_t | delta | ) |
adjusts list pointers to a new memory address.
This method is of a rather technical nature. If all list elements are taken form one array of elements, in certain circumstances the user may be forced to realloc this array. As a consequence all next() pointers of the list elements would become invalid. However, all addresses will be changed by a constant offset delta
. Then move( delta
) may be called, which adjusts the next() pointers of all elements in the list.
Definition at line 376 of file islist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::move().
T* next | ( | const T * | elem | ) | const |
returns successor of elem
in an IsList.
The successor of elem
in a list generally corresponds to the element returned by elem->next(). However, if elem
is the last element in an IsList, this method will return 0, whereas elem->next() may yield an arbitrary value. For example, if the current list is actually a sublist of another, larger IsList, elem->next() returns the successor of elem
in this larger IsList.
Definition at line 308 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::find(), IsList< soplex::SVSet::DLPSV >::move(), and IsList< soplex::SVSet::DLPSV >::remove().
void prepend | ( | T * | elem | ) |
prepends elem
to IsList.
Definition at line 132 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::prepend().
void prepend | ( | IsList< T > & | list | ) |
prepends all elements of list
to IsList.
Appending one list to another keeps the appended list
. Instead, list
remains an own IsList which is then part of the concatenated list. This means that modifying list
will modify the concateneted list as well and vice versa. The programmer is responsible for such changes not to yield inconsistent lists.
void remove | ( | const T * | elem | ) |
void remove | ( | IsList< T > & | list | ) |
void remove_next | ( | T * | after | ) |
removes the successor of after
from an IsList.
Definition at line 210 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::remove().
IsList<T> sublist | ( | const T * | start = 0 , |
const T * | end = 0 |
||
) | const |
|
protected |
the first element in the IsList.
Definition at line 112 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::append(), IdList< soplex::SVSet::DLPSV >::append(), IsList< soplex::SVSet::DLPSV >::clear(), IsList< soplex::SVSet::DLPSV >::find(), IdList< soplex::SVSet::DLPSV >::first(), IsList< soplex::SVSet::DLPSV >::first(), IsList< soplex::SVSet::DLPSV >::insert(), IsList< soplex::SVSet::DLPSV >::length(), IdList< soplex::SVSet::DLPSV >::move(), IsList< soplex::SVSet::DLPSV >::move(), IsList< soplex::SVSet::DLPSV >::prepend(), IdList< soplex::SVSet::DLPSV >::prepend(), IsList< soplex::SVSet::DLPSV >::remove(), IdList< soplex::SVSet::DLPSV >::remove(), and IsList< soplex::SVSet::DLPSV >::sublist().
|
protected |
the last element in the IsList.
Definition at line 113 of file islist.h.
Referenced by IsList< soplex::SVSet::DLPSV >::append(), IdList< soplex::SVSet::DLPSV >::append(), IsList< soplex::SVSet::DLPSV >::clear(), IsList< soplex::SVSet::DLPSV >::insert(), IdList< soplex::SVSet::DLPSV >::insert(), IdList< soplex::SVSet::DLPSV >::last(), IsList< soplex::SVSet::DLPSV >::last(), IsList< soplex::SVSet::DLPSV >::length(), IsList< soplex::SVSet::DLPSV >::move(), IsList< soplex::SVSet::DLPSV >::next(), IsList< soplex::SVSet::DLPSV >::prepend(), IdList< soplex::SVSet::DLPSV >::prepend(), IsList< soplex::SVSet::DLPSV >::remove(), IdList< soplex::SVSet::DLPSV >::remove(), IsList< soplex::SVSet::DLPSV >::remove_next(), and IsList< soplex::SVSet::DLPSV >::sublist().
© 2003-2013 by Zuse Institute Berlin (ZIB), Imprint | Generated on Wed Jan 9 2013 for SoPlex by doxygen |