Created
August 3, 2015 05:28
-
-
Save zainulhasan/f90e13c9ef7a0e9170f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****************************** | |
insertionSort.cpp | |
Auther:Syed Zain Ul hasan | |
*****************************/ | |
#include <iostream> | |
using namespace std; | |
int insertion_sort(int arr[],int n){ | |
for(int i=1;i<n;i++) | |
{ | |
//just select a number as key and place it perviously sorted array | |
int key=arr[i]; | |
int j=i-1; | |
while(j>=0 && key<arr[j]){ | |
arr[j+1]=arr[j]; | |
j--; | |
} | |
arr[j+1]=key; | |
} | |
} | |
int main() { | |
int arr[10]={5,8,79,9,87,98,7,2,5,4}; | |
insertion_sort(arr,10);//sorting | |
//now print array | |
for(int i=0;i<10;i++) | |
cout<<arr[i]<<" "; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment