Skip to content

Instantly share code, notes, and snippets.

@hashmaparraylist
Created May 30, 2016 07:07
Show Gist options
  • Save hashmaparraylist/84578a2be5d89d6c6200afc306af097f to your computer and use it in GitHub Desktop.
Save hashmaparraylist/84578a2be5d89d6c6200afc306af097f to your computer and use it in GitHub Desktop.
各种排序算法
var defaultComparator = function (a, b) {
return a > b;
};
// 冒泡排序
var bubbleSort = function(arr, comparator) {
for(var i = 0; i < arr.length; i++) {
for (var j = 0; j < arr.length - i; j++) {
if (comparator(arr[j], arr[j + 1])) {
var temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
return arr;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment