Package | Description |
---|---|
components.linkedlist |
LinkedList data structure component family and their implementations. |
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.
|
Modifier and Type | Method and Description |
---|---|
LinkedList<T> |
LinkedList1L.newInstance() |
Modifier and Type | Method and Description |
---|---|
void |
SinglyLinkedList.transferFrom(LinkedList<T> source) |
void |
LinkedList1L.transferFrom(LinkedList<T> source) |
void |
DoublyLinkedList.transferFrom(LinkedList<T> source) |