Exemplo n.º 1
0
        public void HeapifyBottomUp()
        {
            // TODO The HeapifyBottomUp() test is incomplete.

            // Create a new heap.
            ConcurrentBinaryMinHeap <int> heap = new ConcurrentBinaryMinHeap <int>();

            // Execute several HeapifyBottomUp()s to test different tree operations on the heap.
            var index = 0;

            heap.HeapifyBottomUp(index);
        }