Skip to content

Instantly share code, notes, and snippets.

@Pr3d4dor
Last active August 29, 2015 14:24
Show Gist options
  • Save Pr3d4dor/ae0cf6751928525795aa to your computer and use it in GitHub Desktop.
Save Pr3d4dor/ae0cf6751928525795aa to your computer and use it in GitHub Desktop.
//Insertion sort function in c
void insertionSort(int *vet,int n){
int i,j,temp;
for(i=1;i<n;i++){
temp=vet[i];
j=i-1;
while((j>=0)&&(vet[j]>temp)){
vet[j+1]=vet[j];
j--;
}
vet[j+1]=temp;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment