javascript数字数组去重复项的实现代码


Posted in Javascript onDecember 30, 2010

test.htm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>array-remove-repeate</title> 
<style> 
.tt{ background-color:#006699; height:3px; overflow:hidden;} 
</style> </head> 
<body> 
<div class="tt"></div> 
<div class="result" id="result"></div> 
<script> 
if(!console) 
{ 
var console={}; 
console.log=function(str){alert(str);} 
} 
Array.prototype.unique1 = function () { 
var r = new Array(); 
label:for(var i = 0, n = this.length; i < n; i++) { 
for(var x = 0, y = r.length; x < y; x++) { 
if(r[x] == this[i]) { 
continue label; 
} 
} 
r[r.length] = this[i]; 
} 
return r; 
} 
Array.prototype.unique2 = function () { 
return this.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(","); 
} 
Array.prototype.unique3 = function() { 
var temp = {}, len = this.length; 
for(var i=0; i < len; i++) { 
var tmp = this[i]; 
if(!temp.hasOwnProperty(tmp)) { 
temp[this[i]] = "my god"; 
} 
} 
len = 0; 
var tempArr=[]; 
for(var i in temp) { 
tempArr[len++] = i; 
} 
return tempArr; 
} 
Array.prototype.unique4 = function () { 
var temp = new Array(); 
this.sort(); 
for(i = 0; i < this.length; i++) { 
if( this[i] == this[i+1]) { 
continue; 
} 
temp[temp.length]=this[i]; 
} 
return temp; 
} 

var test=(function() 
{ 
var arr2=[]; 
for(var i=0;i<2000;i++) 
{ 
var t=i; 
t=parseInt(Math.random()*2000)+1; 
arr2[i]=(t.toString()); 

} 
//arr2=["zhoujian","zhou","zhou"]; 
return function(){ 
return arr2; 
//return [1,2,3,3]; 
}; 

})(); 
window.onload=function(){ 

// 
Watch.start("Cost times1:"); 
var arr= test(); 
console.log(arr.length ); 
arr=arr.unique1(); 
console.log(arr.length); 
Watch.stop(); 
// 
Watch.start("Cost times2:"); 
arr= test(); 
console.log(arr.length); 

arr=arr.unique2(); 
console.log(arr.length); 
Watch.stop(); 
// 
Watch.start("Cost times3:"); 
arr= test(); 
console.log(arr.length ); 
arr=arr.unique3();//数组很大时,最快 
console.log(arr.length ); 
Watch.stop(); 
// 
Watch.start("Cost times4:"); 
arr= test(); 
console.log(arr.length); 
arr=arr.unique4(); 
console.log(arr.length); 
Watch.stop(); 
Watch.report(); 
} 
</script> 
</body> 
</html>

Watch.js
var Watch = { 
result: [], 
guid: -1, 
totalTime: 0, 
start: function(title){ 
this.result[++this.guid] = [title || this.guid, new Date().getTime()]; 
}, 
stop: function(){ 
var r = this.result[this.guid]; 
var t = new Date().getTime() - r[1]; 
this.totalTime += t; 
r[1] = t; 
if(t>=10000){ 
alert("This code takes too long to run,you should optimizate them."); 
} 
}, 
report: function(parent){ 
var div = document.createElement("div"); 
div.style.fontSize = "12px"; 
var str = []; 
str.push("<p><b>The total times:</b><span style='color:#f00'>" + this.totalTime + "</span> ms.</p>"); 
for (var i = 0, l = this.result.length; i < l; i++) { 
if (this.result[i].length > 1) { 
str.push("<p>" + "<span style='width:200px;display:inline-block;background-color:#f7f7f7;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;'>"+"<span style='background-color:#0c0; -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;width=" + (this.totalTime === 0 ? this.totalTime : parseInt(200 * this.result[i][1] / this.totalTime)) + "px; display:inline-block;'>"+this.result[i][1]+"</span>"+"</span> <span style='width:150px; display:inline-block;'>" + this.result[i][0] + "</span>" + "</p>"); 
}else{ 
str.push(this.result[i][0]); 
} 
} 
div.innerHTML = str.join(""); 
parent = parent || document.body; 
parent.appendChild(div); 
div = null; this.totalTime = 0; 
this.guid = -1; 
this.result=[]; 
}, 
fns: function(){ 
var a = arguments; 
for (var i = 0, l = a.length; i < l; i++) { 
this.start(a[i][0]); 
a[i][1](); 
this.stop(); 
} 
}, 
execByTimes: function(fn, times, title){ 
this.start(title); 
while (times--) { 
fn(); 
} 
this.stop(); 
}, 
print: function(str){ 
this.result[++this.guid]=[str]; 
} 
}
Javascript 相关文章推荐
原生Js页面滚动延迟加载图片实现原理及过程
Jun 24 Javascript
通过AJAX的JS、JQuery两种方式解析XML示例介绍
Sep 23 Javascript
JS操作数据库的实例代码
Oct 17 Javascript
jQuery操作input值的各种方法总结
Nov 21 Javascript
JQuery的$和其它JS发生冲突的快速解决方法
Jan 24 Javascript
Jquery在指定DIV加载HTML示例代码
Feb 17 Javascript
两款JS脚本判断手机浏览器类型跳转WAP手机网站
Oct 16 Javascript
关于网页中的无缝滚动的js代码
Jun 09 Javascript
JS 拦截全局ajax请求实例解析
Nov 29 Javascript
Angular2 Service实现简单音乐播放器服务
Feb 24 Javascript
深入浅析Vue不同场景下组件间的数据交流
Aug 15 Javascript
JS实现音量控制拖动
Jan 15 Javascript
ExtJs的Date格式字符代码
Dec 30 #Javascript
jcarousellite.js 基于Jquery的图片无缝滚动插件
Dec 30 #Javascript
使用jQuery全局事件ajaxStart为特定请求实现提示效果的代码
Dec 30 #Javascript
在VS2008中使用jQuery智能感应的方法
Dec 30 #Javascript
jQuery在vs2008及js文件中的无智能提示的解决方法
Dec 30 #Javascript
js TextArea的选中区域处理
Dec 28 #Javascript
基于jquery的一行代码轻松实现拖动效果
Dec 28 #Javascript
You might like
一个简单的php实现的MySQL数据浏览器
2007/03/11 PHP
php下删除字符串中HTML标签的函数
2008/08/27 PHP
解析PHPExcel使用的常用说明以及把PHPExcel整合进CI框架的介绍
2013/06/24 PHP
通过PHP current函数获取未知字符键名数组第一个元素的值
2013/06/24 PHP
php中array_multisort对多维数组排序的方法
2020/06/21 PHP
PHP使用逆波兰式计算工资的方法
2015/07/29 PHP
jquery制作搜狐快站页面效果示例分享
2014/02/21 Javascript
javascript基于HTML5 canvas制作画箭头组件
2014/06/25 Javascript
js匿名函数的调用示例(形式多种多样)
2014/08/20 Javascript
jQuery中scrollLeft()方法用法实例
2015/01/16 Javascript
angularJS 中input示例分享
2015/02/09 Javascript
jquery获取img的src值实例介绍
2019/01/16 jQuery
Vue利用Blob下载原生二进制数组文件
2019/09/25 Javascript
vue 实现超长文本截取,悬浮框提示
2020/07/29 Javascript
vue-cli3 引入 font-awesome的操作
2020/08/11 Javascript
antd vue table跨行合并单元格,并且自定义内容实例
2020/10/28 Javascript
小程序实现列表倒计时功能
2021/01/29 Javascript
[46:20]CHAOS vs Alliacne 2019国际邀请赛小组赛 BO2 第二场 8.15
2019/08/16 DOTA
总结Python中逻辑运算符的使用
2015/05/13 Python
学习python类方法与对象方法
2016/03/15 Python
uwsgi+nginx部署Django项目操作示例
2018/12/04 Python
Python+opencv+pyaudio实现带声音屏幕录制
2019/12/23 Python
Python下使用Trackbar实现绘图板
2020/10/27 Python
python 模拟登陆github的示例
2020/12/04 Python
python3 通过 pybind11 使用Eigen加速代码的步骤详解
2020/12/07 Python
使用Python判断一个文件是否被占用的方法教程
2020/12/16 Python
HTML5中的Scoped属性使用实例
2014/04/23 HTML / CSS
苹果音乐订阅:Apple Music
2018/08/02 全球购物
产品发布会策划方案
2014/05/12 职场文书
小学先进集体事迹材料
2014/05/31 职场文书
学校师德师风整改方案
2014/10/28 职场文书
骨干教师考核评语
2014/12/31 职场文书
2015重阳节敬老活动总结
2015/07/29 职场文书
值班管理制度范本
2015/08/06 职场文书
Python中os模块的简单使用及重命名操作
2021/04/17 Python
Python OpenCV超详细讲解基本功能
2022/04/02 Python