/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sortedlistpriorityqueue; /** * * @author kvaradar */ public interface MyPriorityQueue { public int size(); public boolean isEmpty(); public Entry min(); public Entry insert(K key, V Value); public Entry removeMin(); }