Created
May 30, 2016 07:07
-
-
Save hashmaparraylist/84578a2be5d89d6c6200afc306af097f 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
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