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

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

There is a newer version: 0.9.1
Show newest version
package ags.utils.dataStructures;

/**
 *
 */
public interface MaxHeap {
    public int size();
    public void offer(double key, T value);
    public void replaceMax(double key, T value);
    public void removeMax();
    public T getMax();
    public double getMaxKey();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy