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