JLab

dataStructures
Interface PriorityQueue

All Superinterfaces:
Queue
All Known Implementing Classes:
ArrayPQ, BinaryHeap, BinaryMinHeap

public interface PriorityQueue
extends Queue

อินเตอร์เฟสที่บรรยายบริการของแถวคอยเชิงบุริมภาพ

Author:
สมชาย ประสิทธิ์จูตระกูล

Method Summary
 java.lang.Object dequeue()
           
 java.lang.Object peek()
           
 
Methods inherited from interface dataStructures.Queue
enqueue, isEmpty, size
 

Method Detail

dequeue

java.lang.Object dequeue()
Specified by:
dequeue in interface Queue

peek

java.lang.Object peek()
Specified by:
peek in interface Queue

JLab