Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            HeapSort heapSort = new HeapSort();

            heapSort.ConstructHeap();

            #region QuickSort
            //QuickSortAlgorithm obj = new QuickSortAlgorithm();
            // obj.Sort();
            #endregion

            Console.Read();
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            HeapSort heapSort = new HeapSort();

            heapSort.ConstructHeap();
        }