|
|||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||
| 概要: 内部クラス | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||
Interface for priority queues. This interface does not dictate whether it is min or max heap.
| メソッドの概要 | |
void |
clear()
Clear all elements from queue. |
void |
insert(java.lang.Comparable element)
Insert an element into queue. |
boolean |
isEmpty()
Test if queue is empty. |
java.lang.Comparable |
peek()
Return element on top of heap but don't remove it. |
java.lang.Comparable |
pop()
Return element on top of heap and remove it. |
| メソッドの詳細 |
public void clear()
public void insert(java.lang.Comparable element)
element - the element to be insertedpublic boolean isEmpty()
public java.lang.Comparable peek()
throws java.util.NoSuchElementException
java.util.NoSuchElementException - if isEmpty() == true
public java.lang.Comparable pop()
throws java.util.NoSuchElementException
java.util.NoSuchElementException - if isEmpty() == true
|
|||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||
| 概要: 内部クラス | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||