In the web I mostly find this implementation:

void insertSort(int a[], int length) 
    {  
       int i, j, value;  
     int k=0;
       for(i = 1; i < length; i++) 
       {  
           value = a[i];  
           for (j = i - 1; j >= 0 && a[j] > value; j--) 
           {  
                a[j + 1] = a[j]; 
                k++;
           }  
           a[j+1] = value;  
         }  

    printf("k=%d", k);
     } 

I have writen this:

#include <stdio.h>

#define SIZE 8

int array1[SIZE] = {77, 33, 44, 11, 88, 22, 66, 55};

void PrintArray()
{
    int i = 0;
    printf("\n");
    for(i=0 ; i<SIZE ; i++)
    {
        printf("%d, ", array1[i]);
    }
}

void Insert(int insertPosition, int insertElementIndex)
{
    int temp = array1[insertElementIndex];
    int i = 0;

    for(i=insertElementIndex ; i>=insertPosition ; i--)
    {
        array1[i] = array1[i-1];
    }

    array1[insertPosition] = temp;
}

void InsertionSort()
{
    int i = 0;
    int j = 0;
    int k = 0;

    for(i=0 ; i<SIZE ; i++)
    {
        for(j=0 ; j<=i ; j++)
        {
            if(array1[i] < array1[j])
            {
                Insert(j, i);               
                PrintArray();               
            }

            k++;
        }
    }
    printf("k=%d", k);
}



main()
{
    PrintArray();

    InsertionSort();
    //insertSort(array1, SIZE);

    PrintArray();

    getch();
}

Is there any problem with this implementation of Insertion sort algorithm?

link|improve this question

4  
Sounds like a job for codereview.stackexchange.com – mu is too short Apr 22 '11 at 9:20
No idea. What happens when you run it? – Pete Wilson Apr 22 '11 at 10:33
Please post the exact problem that you are facing. – BiGYaN Apr 22 '11 at 12:32
feedback

1 Answer

I think the first example you provided is more efficient for two reasons.

Firstly because the inner for loop in your code continues longer than needed, when the condition if array1[i] < array1[j] fails (meaning the correct place to insert has been found) you should break out of the inner loop.

Secondly, there is no need to assign the current insertion value until its correct place has been found. You just move everything along, keeping track of the position and place at the end. For example in the first piece of code:

for (j = i - 1; j >= 0 && a[j] > value; j--) 
       {  
            a[j + 1] = a[j]; 
            k++;
       }  
       a[j+1] = value;

value is only been inserted when the loop has finished.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.