Internal structure to hold the items and internal forward pointers of the skiplist. More...
Private Member Functions | |
| Element (const X &item, int height) | |
| ~Element () | |
Private Attributes | |
| X | entry |
| Element ** | next |
Friends | |
| class | Skiplist< X > |
| class | SkiplistIterator< X > |
Internal structure to hold the items and internal forward pointers of the skiplist.
Definition at line 66 of file Skiplist.h.
| ogdf::Skiplist< X >::Element::Element | ( | const X & | item, |
| int | height | ||
| ) | [inline, private] |
Definition at line 74 of file Skiplist.h.
| ogdf::Skiplist< X >::Element::~Element | ( | ) | [inline, private] |
Definition at line 79 of file Skiplist.h.
friend class Skiplist< X > [friend] |
Definition at line 67 of file Skiplist.h.
friend class SkiplistIterator< X > [friend] |
Definition at line 68 of file Skiplist.h.
X ogdf::Skiplist< X >::Element::entry [private] |
Definition at line 70 of file Skiplist.h.
Element** ogdf::Skiplist< X >::Element::next [private] |
Definition at line 71 of file Skiplist.h.