import Heaps.Heap;

class SelfTest5 {

  static public void main(String[] args) {
    Heap<Integer> h = new Heap<Integer>();
    int item;

    h.heapInsert(2);
    h.heapInsert(3);
    h.heapInsert(4);
    h.heapInsert(1);
    h.heapInsert(9);
    item = h.heapDelete();
    h.heapInsert(7);
    h.heapInsert(6);
    item = h.heapDelete();
    h.heapInsert(5);
  } // end main
} // end SelfTest5