public interface MyPriorityQueue { public void offer(E key); public E poll(); public boolean isEmpty(); }