Monday, February 19, 2018

HEAP SORT

Posted by atiek on February 19, 2018

HEAP SORT


/* HEAP SORT */
/* HEAP.C */

# include<stdio.h>

void  heap_sort(int *, int );
void create_heap(int *, int);
void display(int *, int);

/*     Definition of the function */

void create_heap(int list[], int n )
{

    int k, j, i, temp;

    for(k = 2 ; k <= n;  ++k)
    {
        i = k ;
        temp = list[k];
        j = i / 2 ;

        while((i > 1) && (temp > list[j]))
        {
            list[i] = list[j];
            i = j ;
            j = i / 2 ;
            if ( j < 1 )
                j = 1 ;
        }

        list[i] = temp ;
    }
}

/* End of heap creation function */

/* Definition of the function */

void heap_sort(int list[], int n)
{
    int k, temp, value, j, i, p;
    int step = 1;
    for(k = n ; k >= 2; --k)
    {
        temp = list[1] ;
        list[1] = list[k];
        list[k] = temp ;

        i = 1 ;
        value = list[1];
        j = 2 ;

        if((j+1) < k)
            if(list[j+1] > list[j])
                j ++;
        while((j <= ( k-1)) && (list[j] > value))
        {
            list[i] = list[j];
            i = j ;
            j = 2*i ;
            if((j+1) < k)
                if(list[j+1] > list[j])
                    j++;
                else
                    if( j > n)
                        j = n ;
            list[i] = value;
        } /* end of while statement */
       
        printf(" Step = %d ", step);
        step++;   
        for(p = 1; p <= n; p++)
            printf(" %d", list[p]);
    } /* end for loop */
}

/* Display function */

void display(int list[], int n)
{
    int i;
    for(i = 1 ; i <= n; ++ i)
    {
        printf("  %d", list[i]);
    }
}

/* Function main */

void main()
{
    int list[100];
    int i, size = 13 ;

    printf(" Size of the list: %d", size);

    for(i = 1 ; i <= size ; ++i)
    {
        list[i] = rand() % 100;
    }
    printf(" Entered list is as follows: ");
    display(list, size);
    create_heap(list, size);
    printf(" Heap ");
    display(list, size);
    printf(" ");

    heap_sort(list,size);

    printf(" Sorted list is as follows : ");
    display(list,size);

}


visit link download

Related Posts:

  • Memorial DayMemorial Day go to link download … Read More
  • The Hunger GamesThe Hunger Games THE HUNGER GAMESDated Released : 23 March 2012 Quality : TS XViD AC3-ADTRG |Kualitas BurukInfo : imdb.com/title/tt1392170/IMDB Rating : 8.0 (23,090 users)Star : Jennifer Lawrence, Josh Hutcherson, Liam HGenre… Read More
  • Download Ashampoo Anti Virus v1 0 0 Multilanguage Cracked P2P Free Full Version SetupDownload Ashampoo Anti Virus v1 0 0 Multilanguage Cracked P2P Free Full Version SetupFree Download Full Version Download Ashampoo Anti-Virus v1.0.0 Multilanguage Cracked-P2P  Full Version Lifetime License Seria… Read More
  • Harvest Moon Back To NatureHarvest Moon Back To NatureHal hal Misterius di Harvest Moon Back To Nature Tuesday, May 21, 2013Kali ini Zhaiketzzrio Blog akan bahas Hal hal Misterius di Harvest Moon Back To Nature. Dan berikut ini adalah bukti adanya… Read More
  • Blueray The Fighting Kentuckian 1949 GratisBlueray The Fighting Kentuckian 1949 GratisWatch Movie The Fighting Kentuckian Full Movie HD. Download The Fighting Kentuckian High Quality with duration 100 Min and released on 1949-09-15 and MPAA rating is 2.Original Title … Read More