Declaration of singly linked lists and iterators. More...
#include <ogdf/basic/internal/list_templates.h>
Go to the source code of this file.
Classes | |
class | ogdf::SList< E > |
Singly linked lists (maintaining the length of the list). More... | |
class | ogdf::SListElement< E > |
Structure for elements of singly linked lists. More... | |
class | ogdf::SListIteratorBase< E, isConst > |
Encapsulates a pointer to an ogdf::SList element. More... | |
class | ogdf::SListPure< E > |
Singly linked lists. More... | |
Namespaces | |
namespace | ogdf |
The namespace for all OGDF objects. | |
Typedefs | |
template<class E > | |
using | ogdf::SListConstIterator = SListIteratorBase< E, true > |
template<class E > | |
using | ogdf::SListIterator = SListIteratorBase< E, false > |
Functions | |
template<class E > | |
void | ogdf::bucketSort (Array< E > &a, int min, int max, BucketFunc< E > &f) |
Bucket-sort array a using bucket assignment f ; the values of f must be in the interval [min ,max ]. | |
template<class E > | |
std::ostream & | ogdf::operator<< (std::ostream &os, const SList< E > &L) |
Output operator. | |
template<class E > | |
std::ostream & | ogdf::operator<< (std::ostream &os, const SListPure< E > &L) |
Output operator. | |
template<class E > | |
void | ogdf::print (std::ostream &os, const SList< E > &L, char delim=' ') |
Prints list L to output stream os using delimiter delim . | |
template<class E > | |
void | ogdf::print (std::ostream &os, const SListPure< E > &L, char delim=' ') |
Prints list L to output stream os using delimiter delim . | |
Declaration of singly linked lists and iterators.
Definition in file SList.h.