|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
A type-specific PriorityQueue; provides some additional methods that use polymorphism to reduce type juggling.
| Method Summary | |
char |
dequeueChar()
Dequeues the first element from the queue. |
void |
enqueue(char x)
Enqueues a new element. |
char |
firstChar()
Returns the front element of the queue. |
char |
lastChar()
Returns the rear element of the queue, that is, the element the would be dequeued last (optional operation). |
| Methods inherited from interface it.unimi.dsi.fastutil.PriorityQueue |
changed, clear, comparator, dequeue, enqueue, first, isEmpty, last, size |
| Method Detail |
public void enqueue(char x)
x - the element to enqueue..public char dequeueChar()
NoSuchElementException - if the queue is empty.public char firstChar()
NoSuchElementException - if the queue is empty.public char lastChar()
NoSuchElementException - if the queue is empty.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||