-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinHeapInterface.java
More file actions
39 lines (33 loc) · 884 Bytes
/
Copy pathMinHeapInterface.java
File metadata and controls
39 lines (33 loc) · 884 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 MinHeapInterface<T>
{
/**
* Adds a new entry to this heap.
* @param newEntry The object to be added.
*/
void add(T newEntry);
/**
* Removes and returns the smalelst item in the heap
* @return The smallest object in heap or null if heap is empty
*/
T removeMin();
/**
* Returns the smalelst item in the heap
* @return The smallest object in heap or null if heap is empty
*/
T getMin();
/**
* Determines whether the heap is empty
* @return True if 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 the heap
*/
void clear();
}