Ejemplo n.º 1
0
        public void HeapifyTopDown()
        {
            // TODO The HeapifyTopDown() 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.HeapifyTopDown(index);
        }