graph.util.PriorityQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-compiler Show documentation
Show all versions of astra-compiler Show documentation
Core compiler artifact for the ASTRA Language
package graph.util;
public interface PriorityQueue {
public int size();
public boolean isEmpty();
public Position insert(K key, V value);
public Position replaceKey(Position position, K key);
public V min();
public V remove();
}