public class Queue
extends java.lang.Object
Constructor and Description |
---|
Queue()
Construct the queue.
|
Queue(int size)
Construct the queue.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Double |
dequeue()
Return and remove the least recently inserted item
from the queue.
|
void |
enqueue(java.lang.Double x)
Insert a new item into the queue.
|
java.lang.Double |
getFront()
Get the least recently inserted item in the queue.
|
boolean |
isEmpty()
Test if the queue is logically empty.
|
void |
makeEmpty()
Make the queue logically empty.
|
int |
size() |
java.lang.Double[] |
toArray() |
public Queue()
public Queue(int size)
size
- of the queue.public boolean isEmpty()
public void makeEmpty()
public java.lang.Double dequeue()
public java.lang.Double getFront()
public void enqueue(java.lang.Double x)
x
- the item to insert.public int size()
public java.lang.Double[] toArray()