Declaration of singly linked lists and iterators. More...
#include <ogdf/basic/Array.h>
#include <ogdf/basic/basic.h>
#include <ogdf/basic/internal/config_autogen.h>
#include <ogdf/basic/internal/list_templates.h>
#include <ogdf/basic/memory.h>
#include <functional>
#include <initializer_list>
#include <ostream>
#include <random>
#include <type_traits>
#include <utility>
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::SListIteratorBase< E, isConst > |
Encapsulates a pointer to an ogdf::SList element. More... | |
class | ogdf::SListPure< E > |
Singly linked lists. More... | |
class | ogdf::SListPure< E > |
Singly linked lists. More... | |
Namespaces | |
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 ]. More... | |
template<class E > | |
std::ostream & | ogdf::operator<< (std::ostream &os, const SList< E > &L) |
Output operator. More... | |
template<class E > | |
std::ostream & | ogdf::operator<< (std::ostream &os, const SListPure< E > &L) |
Output operator. More... | |
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 . More... | |
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 . More... | |
Declaration of singly linked lists and iterators.
Definition in file SList.h.