/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package sortedlistpriorityqueue;

/**
 *
 * @author kvaradar
 */
public interface MyPriorityQueue<K,V> {
    
    public int size();
    
    public boolean isEmpty();
    
    public Entry<K,V> min();
    
    public Entry<K,V> insert(K key, V Value);
    
    public Entry<K,V> removeMin();

}
