public class CharQueue
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
CharQueue.CharQueueIterable |
static class |
CharQueue.CharQueueIterator |
Modifier and Type | Field and Description |
---|---|
protected int |
head
Index of first element.
|
int |
size
Number of elements in the queue.
|
protected int |
tail
Index of last element.
|
protected char[] |
values
Contains the values in the queue.
|
Constructor and Description |
---|
CharQueue()
Creates a new Queue which can hold 16 values without needing to resize backing array.
|
CharQueue(int initialSize)
Creates a new Queue which can hold the specified number of values without needing to resize backing array.
|
Modifier and Type | Method and Description |
---|---|
void |
addFirst(char object)
Prepend given object to the head.
|
void |
addLast(char object)
Append given object to the tail.
|
void |
clear()
Removes all values from this queue.
|
void |
ensureCapacity(int additional)
Increases the size of the backing array to accommodate the specified number of additional items.
|
boolean |
equals(java.lang.Object o) |
char |
first()
Returns the first (head) item in the queue (without removing it).
|
char |
get(int index)
Retrieves the value in queue without removing it.
|
int |
hashCode() |
int |
indexOf(char value)
Returns the index of first occurrence of value in the queue, or -1 if no such value exists.
|
boolean |
isEmpty()
Returns true if the queue is empty.
|
java.util.Iterator<java.lang.Character> |
iterator()
Returns an iterator for the items in the queue.
|
char |
last()
Returns the last (tail) item in the queue (without removing it).
|
boolean |
notEmpty()
Returns true if the queue has one or more items.
|
char |
removeFirst()
Remove the first item from the queue.
|
char |
removeIndex(int index)
Removes and returns the item at the specified index.
|
char |
removeLast()
Remove the last item from the queue.
|
boolean |
removeValue(char value)
Removes the first instance of the specified value in the queue.
|
protected void |
resize(int newSize)
Resize backing array.
|
java.lang.String |
toString() |
java.lang.String |
toString(java.lang.String separator) |
protected char[] values
protected int head
protected int tail
public int size
public CharQueue()
public CharQueue(int initialSize)
public void addLast(char object)
object
- can be nullpublic void addFirst(char object)
object
- can be nulladdLast(char)
public void ensureCapacity(int additional)
protected void resize(int newSize)
public char removeFirst()
java.util.NoSuchElementException
- when queue is emptypublic char removeLast()
java.util.NoSuchElementException
- when queue is emptyremoveFirst()
public int indexOf(char value)
public boolean removeValue(char value)
public char removeIndex(int index)
public boolean notEmpty()
public boolean isEmpty()
public char first()
java.util.NoSuchElementException
- when queue is emptyaddFirst(char)
,
removeFirst()
public char last()
java.util.NoSuchElementException
- when queue is emptyaddLast(char)
,
removeLast()
public char get(int index)
first()
.java.lang.IndexOutOfBoundsException
- when the index is negative or greater or equal than sizepublic void clear()
public java.util.Iterator<java.lang.Character> iterator()
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toString(java.lang.String separator)
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object