public void HeapListInsert() { var heap = new HeapList(); heap.Insert(10); heap.Insert(20); heap.Insert(5); heap.Insert(5); }
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); }