public class LinkedArrayQueue<T>
extends java.util.AbstractQueue<T>
| Constructor and Description |
|---|
LinkedArrayQueue() |
LinkedArrayQueue(int arraySize) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isEmpty() |
java.util.Iterator<T> |
iterator() |
boolean |
offer(T t) |
T |
peek() |
T |
poll() |
java.util.List<T> |
pollN(int n) |
int |
size() |
contains, containsAll, remove, removeAll, retainAll, toArray, toArray, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitpublic LinkedArrayQueue(int arraySize)
public LinkedArrayQueue()