Exemplo n.º 1
0
        public void ExceptionOnFullHeap()
        {
            var heap = new BinaryHeap(1);

            heap.AddElement(1);
            heap.AddElement(2);
        }
Exemplo n.º 2
0
        public void ExtractMaxSimple()
        {
            var heap = new BinaryHeap();

            heap.AddElement(5);
            Assert.AreEqual(5, heap.ExtractMax());
        }
Exemplo n.º 3
0
        public void NonEmptyHeap()
        {
            var heap = new BinaryHeap();

            heap.AddElement(1);
            Assert.IsFalse(heap.Empty);
        }
Exemplo n.º 4
0
        public void AddMany()
        {
            var heap = new BinaryHeap(1024);

            for (int i = 1; i <= 1000; i++)
            {
                heap.AddElement(i);
                Assert.AreEqual(i, heap.Peek());
            }
        }
Exemplo n.º 5
0
        public void ExtractMaxMany()
        {
            var heap = new BinaryHeap(1024);

            for (int i = 1; i <= 1000; i++)
            {
                heap.AddElement(i);
            }
            for (int i = 1000; i >= 1; i--)
            {
                Assert.AreEqual(i, heap.ExtractMax());
            }
        }
Exemplo n.º 6
0
        public void ExtactMaxExtreme()
        {
            const int count = 1048576;
            var       heap  = new BinaryHeap(count);

            for (int i = 0; i < count; i++)
            {
                heap.AddElement(i);
            }
            for (int i = count - 1; i >= 0; i--)
            {
                Assert.AreEqual(i, heap.ExtractMax());
            }
        }
Exemplo n.º 7
0
        public void EmptyHeapComplex()
        {
            var heap = new BinaryHeap(1024);

            for (int i = 1; i <= 1000; i++)
            {
                heap.AddElement(i);
            }
            for (int i = 1000; i >= 1; i--)
            {
                heap.ExtractMax();
            }
            Assert.IsTrue(heap.Empty);
        }