T
- public class IterativeLinkedList<T>
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
class |
IterativeLinkedList.ILLIterator
The iterator
|
Constructor and Description |
---|
IterativeLinkedList()
Create the list
|
Modifier and Type | Method and Description |
---|---|
void |
add(T item)
Add the element at the end of the list
|
boolean |
isEmpty()
Check weather empty
|
IterativeLinkedList.ILLIterator |
iterator()
Create the iterator
|
int |
size()
Size of the list
|
public boolean isEmpty()
public int size()
public void add(T item)
public IterativeLinkedList.ILLIterator iterator()