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

            HeapListInsertALot(heap);
            heap.Print();
            heap.DeleteRoot();
            heap.Print();
            heap.DeleteRoot();
            heap.Print();
        }
Example #2
0
        public void HeapListPrint()
        {
            var heap = new HeapList();

            HeapListInsertALot(heap);
            heap.Print();
        }