C Program Insertion Sort

By | March 8, 2020

C Program Insertion Sort

/* C Program Insertion Sort */

 
#include <stdio.h> 
  


int main() 
{ 
    int array[100], i, key, j, n;  
     
  
    printf("Enter number of elements [Maximum 100]= ");
    scanf("%d", &n);

    printf("Enter %d numbers in this array\n", n);

    for (i = 0; i < n; i++)
       scanf("%d", &array[i]);
    
     for (i = 1; i < n; i++) 
      { 
        key = array[i]; 
        j = i - 1; 
  
        		  
        while (j >= 0 && array[j] > key)
	 { 
            array[j + 1] = array[j]; 
            j = j - 1; 
         } 
        
		array[j + 1] = key; 
        } 
	
	printf("Sorted array in ascending order is as follows:\n");
	for (i = 0; i < n; i++) 
        printf("%d ,  ", array[i]); 
    
  
    return 0; 
} 

Output
Enter number of elements [Maximum 100]= 5
Enter 5 numbers in this array
67
2
34
89
7
Sorted array in ascending order is as follows:
2 , 7 , 34 , 67 , 89 ,

Loading

Leave a Reply

Your email address will not be published. Required fields are marked *