| Class | Description |
|---|---|
| BasicDoubleLinkedList<T> |
This generic doubly-linked list relies on a head (reference to first element of
the list) and tail (reference to the last element of the list).
|
| SortedDoubleLinkedList<T> |
Implements a generic sorted list using a provided Comparator.
|