1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. JavaScript數組去重的四種方法

        時間:2024-09-30 23:22:14 JavaScript 我要投稿
        • 相關推薦

        JavaScript數組去重的四種方法

          javascript數組去重方法匯總

          Array.prototype.unique1 = function () { var n = []; //一個新的臨時數組 for (var i = 0; i < this.length; i++) //遍歷當前數組 {  //如果當前數組的第i已經保存進了臨時數組,那么跳過,  //否則把當前項push到臨時數組里面  if (n.indexOf(this[i]) == -1) n.push(this[i]); } return n;};Array.prototype.unique2 = function(){  var n = {},r=[]; //n為hash表,r為臨時數組  for(var i = 0; i < this.length; i++) //遍歷當前數組  {    if (!n[this[i]]) //如果hash表中沒有當前項    {      n[this[i]] = true; //存入hash表      r.push(this[i]); //把當前數組的當前項push到臨時數組里面    }  }  return r;};Array.prototype.unique3 = function(){  var n = [this[0]]; //結果數組  for(var i = 1; i < this.length; i++) //從第二項開始遍歷  {    //如果當前數組的第i項在當前數組中第一次出現的位置不是i,    //那么表示第i項是重復的,忽略掉。否則存入結果數組    if (this.indexOf(this[i]) == i) n.push(this[i]);  }  return n;};Array.prototype.unique4 = function(){  this.sort();  var re=[this[0]];  for(var i = 1; i < this.length; i++)  {    if( this[i] !== re[re.length-1])    {      re.push(this[i]);    }  }  return re;};var arr = [1,2,2,2,3,3,4,5];console.log(arr.unique1()); // [1, 2, 3, 4, 5]console.log(arr.unique2()); // [1, 2, 3, 4, 5]console.log(arr.unique3()); // [1, 2, 3, 4, 5]console.log(arr.unique4()); // [1, 2, 3, 4, 5]

          其中第1種和第3種方法都用到了數組的indexOf方法。此方法的目的是尋找存入參數在數組中第一次出現的位置。很顯然,js引擎在實現這個方法的時候會遍歷數組直到找到目標為止。所以此函數會浪費掉很多時間。 而第2中方法用的是hash表。把已經出現過的通過下標的形式存入一個object內。下標的引用要比用indexOf搜索數組快的多。

          第四種方法的思路是先把數組排序,然后比較相鄰的兩個值。 排序的時候用的JS原生的sort方法,JS引擎內部應該是用的快速排序吧。 最終測試的結果是此方法運行時間平均是第二種方法的三倍左右,不過比第一種和第三種方法快了不少。

          以上所述就是本文的全部內容了,希望大家能夠喜歡。

        【JavaScript數組去重的四種方法】相關文章:

        JavaScript數組常用方法介紹09-04

        去肉類腥味的四種方法10-21

        JavaScript常用方法匯總10-25

        javascript跨域訪問的方法07-09

        javascript編程異常處理的方法08-04

        Java數組操作方法大全08-22

        JavaScript fontcolor方法入門實例07-07

        c語言字符數組使用方法10-14

        使用ajax操作JavaScript對象的方法09-28

        2016年java數組操作方法大全06-19

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>