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

Alachisoft.NCache.Common.DataStructures.IPriorityQueue Maven / Gradle / Ivy

package Alachisoft.NCache.Common.DataStructures;

public interface IPriorityQueue {
    int push(Object O);

    Object pop();

    Object peek();

    void update(int i);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy