All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ags.utils.dataStructures.MinHeap Maven / Gradle / Ivy

The newest version!
package ags.utils.dataStructures;

/**
 *
 */
public interface MinHeap {
    public int size();
    public void offer(double key, T value);
    public void replaceMin(double key, T value);
    public void removeMin();
    public T getMin();
    public double getMinKey();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy