Skip to content

Instantly share code, notes, and snippets.

@ramsunvtech
Created January 19, 2016 07:49
Show Gist options
  • Save ramsunvtech/ffa931ffc50371944ec9 to your computer and use it in GitHub Desktop.
Save ramsunvtech/ffa931ffc50371944ec9 to your computer and use it in GitHub Desktop.
Insertion sort
function insertionSort(arr){
var i, len = arr.length, el, j;
for(i = 1; i<len; i++){
el = arr[i];
j = i;
while(j>0 && arr[j-1]>toInsert){
arr[j] = arr[j-1];
j--;
}
arr[j] = el;
}
return arr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment