JS 数组去重的几个方法
1 Array.prototype.unique1 = function () { 2 var n = []; //一个新的临时数组 3 for (var i = 0; i < this.length; i++) //遍历当前数组 4 { 5 //如果当前数组的第i已经保存进了临时数组,那么跳过, 6 //否则把当前项push到临时数组里面 7 if (n.indexOf(this[i]) == -1) n.push(this[i]); 8 } 9 return n; 10 }; 11 12 13 Array.prototype.unique2 = function() 14 { 15 var n = {},r=[]; //n为hash表,r为临时数组 16 for(var i = 0; i < this.length; i++) //遍历当前数组 17 { 18 if (!n[this[i]]) //如果hash表中没有当前项 19 { 20 n[this[i]] = true; //存入hash表 21 r.push(this[i]); //把当前数组的当前项push到临时数组里面 22 } 23 } 24 return r; 25 }; 26 27 28 Array.prototype.unique3 = function() 29 { 30 var n = [this[0]]; //结果数组 31 for(var i = 1; i < this.length; i++) //从第二项开始遍历 32 { 33 //如果当前数组的第i项在当前数组中第一次出现的位置不是i, 34 //那么表示第i项是重复的,忽略掉。否则存入结果数组 35 if (this.indexOf(this[i]) == i) n.push(this[i]); 36 } 37 return n; 38 }; 39 40 41 Array.prototype.unique4 = function() 42 { 43 this.sort(); 44 var re=[this[0]]; 45 for(var i = 1; i < this.length; i++) 46 { 47 if( this[i] !== re[re.length-1]) 48 { 49 re.push(this[i]); 50 } 51 } 52 return re; 53 }; 54 55 56 var arr = [1,2,2,2,3,3,4,5]; 57 console.log(arr.unique1()); // [1, 2, 3, 4, 5] 58 console.log(arr.unique2()); // [1, 2, 3, 4, 5] 59 console.log(arr.unique3()); // [1, 2, 3, 4, 5] 60 console.log(arr.unique4()); // [1, 2, 3, 4, 5]
[-_-]眼睛累了吧,注意劳逸结合呀[-_-]
分类:
JavaScript
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· 99%的人不知道,桥接模式失败的真正原因是它!
· .NET Core GC压缩(compact_phase)底层原理浅谈
· Winform-耗时操作导致界面渲染滞后
· Phi小模型开发教程:C#使用本地模型Phi视觉模型分析图像,实现图片分类、搜索等功能