Package | Description |
---|---|
components.linkedlist |
LinkedList data structure component family and their implementations. |
Modifier and Type | Interface and Description |
---|---|
interface |
LinkedList<T>
Additional functionality upon the bare-bones functionality afforded by the
LinkedListKernel interface. |
Modifier and Type | Class and Description |
---|---|
class |
DoublyLinkedList<T>
A non-layered implementation of a doubly-linked list using 2 sentinel nodes.
|
class |
LinkedList1L<T> |
class |
LinkedListSecondary<T>
Abstract class providing the implementation of all of the layered secondary
methods that were defined in the LinkedList interface, as well as the
implementation for equals, toString, and hashCode methods.
|
class |
SinglyLinkedList<T>
A non-layered implementation of a singly-linked list using 2 sentinel nodes.
|