See: Description
| Interface | Description |
|---|---|
| EventList |
An interface for implementations of event lists.
|
| Class | Description |
|---|---|
| BinaryTree |
An implementation of
EventList using a binary search tree. |
| DoublyLinked |
An implementation of
EventList using a doubly linked linear list. |
| Henriksen |
An implementation of
EventList using the doubly-linked
indexed list of Henriksen (see also). |
| RedblackTree |
An implementation of
EventList using a red black tree,
which is similar to a binary search tree except that
every node is colored red or black. |
| SplayTree |
An implementation of
EventList using a splay tree. |
Should add the appropriate references for the different event list implementations.
To submit a bug or ask questions, send an e-mail to Pierre L'Ecuyer.