| Modifier and Type | Method and Description |
|---|---|
BasicLinkedList<T> |
BasicLinkedList.addToEnd(T data)
Adds element to the end (tail) of the list.
|
BasicLinkedList<T> |
BasicLinkedList.addToFront(T data)
Adds element to the front (head) of the list.
|
BasicLinkedList<T> |
BasicLinkedList.removeAllInstances(T targetData)
Removes ALL instances of targetData from the list.
|