1. 首页
  2. 信息化
  3. 项目管理
  4. js常用排序实现代码

js常用排序实现代码

上传者: 2020-12-13 06:38:14上传 PDF文件 27.66KB 热度 14次
代码如下: [removed] Array.prototype.swap = function(i, j) { var temp = this[i]; this[i] = this[j]; this[j] = temp; } Array.prototype.bubbleSort = function() { for (var i = this.length – 1; i > 0; –i) { for (var j = 0; j < i> this[j + 1]) this.swap(j, j + 1); } } } Array.prototype.sel
用户评论