前言
本次来分享一下排序的api底层的逻辑,这次用js模拟,java的逻辑也是差不多。
先看封装好的api例子:
js的sort排序
java的compareTo排序
自己模拟的代码(JS)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
function compareTo(a,b){ return a-b; //a-b为从下到大 b-a为从大到小 } Object.prototype.newSort = function (Func){ const flag = Func(1,0); const $ this = this ; // 注意:上面for循环的$this.length-1是因为这里只需要走到倒数第二个位置即可,而下面的for循环$this.length-1是数组下标对应的最后一个值 for (let i = 0; i < $ this .length-1; i++){ for (let j = $ this .length-1; j > i; j--){ // 思路就是从数组第一个开始与倒数第一个向上直到数组第二个的过程中一直比较,如果有比第一个小的,就交换,然后第二次循环就只需要第二个与倒数第二个开始比较,以此类推 const compare = flag > 0 ? $ this [i] > $ this [j] : $ this [i] < $ this [j]; if (compare){ //满足条件就进行位运算来交换位置 $ this [i] = $ this [i] ^ $ this [j]; $ this [j] = $ this [i] ^ $ this [j]; $ this [i] = $ this [i] ^ $ this [j]; } } } } var array = [2,1,5,7,3,4,9,8,6,4,5,2,1]; console.log(array.newSort(compareTo)); //[ 1, 1, 2, 2, 3, 4, 4, 5, 5, 6, 7, 8, 9 ] |
源代码
js源代码
java源代码
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/zxd66666/p/13194458.html