Example #1
0
        public void HeapListInsert()
        {
            var heap = new HeapList();

            heap.Insert(10);
            heap.Insert(20);
            heap.Insert(5);
            heap.Insert(5);
        }
Example #2
0
 public void HeapListInsertALot(HeapList heap)
 {
     heap.Insert(10);
     heap.Insert(20);
     heap.Insert(5);
     heap.Insert(0);
     heap.Insert(28);
     heap.Insert(3);
     heap.Insert(15);
 }