A C D E F G H I L M N P R S T W

L

LinkedList<E> - Class in <Unnamed>
An Iterable list that is implemented using a singly-linked chain of nodes with a header node and without a tail reference.
LinkedList() - Constructor for class LinkedList
 
LinkedListIterator<T> - Class in <Unnamed>
The iterator implementation for LinkedList.
LinkedListIterator(Listnode<T>) - Constructor for class LinkedListIterator
Constructs a LinkedListIterator when given the first node in a chain of nodes that contains data.
ListADT<E> - Interface in <Unnamed>
 
Listnode<E> - Class in <Unnamed>
The internal node structure of LinkedList.
Listnode(E) - Constructor for class Listnode
Constructs a new list node with no link to a next node in the chain.
Listnode(E, Listnode<E>) - Constructor for class Listnode
Constructs a new list node with a link to the next node in a chain of nodes.

A C D E F G H I L M N P R S T W