-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaxHeapInterface.java
More file actions
39 lines (33 loc) · 913 Bytes
/
Copy pathMaxHeapInterface.java
File metadata and controls
39 lines (33 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package TreePackage;
public interface MaxHeapInterface<T extends Comparable<? super T>>
{
/**
* Adds a new entry to this heap
* @param newEntry The object to be added
*/
void add(T newEntry);
/**
* Removes and returns the largest item in this heap
* @return Either the largest object in the heap or null (if heap is empty)
*/
T removeMax();
/**
* Returns the largest item in the heap.
* @return Either largest object in heap or null
*/
T getMax();
/**
* Determines whether the heap is empty.
* @return True if the heap is empty, false otherwise.
*/
boolean isEmpty();
/**
* Gets the size of this heap
* @return The number of entries currently in the heap.
*/
int getSize();
/**
* Removes all entries from this heap
*/
void clear();
}