码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript实现集合

时间:2015-03-18 15:18:39      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

function set(){
this.dataStore=[];
this.add=add;
this.remove.remove;
this.size=size;
this.union=union;
this.intersect=intersect;
this.subset=subset;
this.difference=difference;
this.show=show;

}

 

 

function add(data){
if(this.dataStore.indexOf(data)<0){//集合的唯一性
this.dataSource.push(data);
}
else{
return false;
}
}

function remove(data){
var pos=this.dataStore.indexOf(data);
if(pos>-1)
{
this.dataStore.splice(pos,1);
}

else
{
return false;
}
}

 

 


function show(){
return this.dataStore;

}


function union(set)
{
var tempset=new set;
for(var i=0;i<this.dataStore.length;i++)
{
tempset.add(this.dataStore[i]);
}

for(var i=0;i<set.dataStore.length;++i)
{
if(!tempset.contains(set.dataStore[i]))
{
tempset.dataStore.push(set.dataStore[i]);

}
}

return tempset;

}


function intersect(set)
{
var tempset=new set();
for(var i=0;i<this.dataStore.length;i++)
{
if(set.contains(this.dataStore[i])){
tempset.add(set.dataStore[i]);

}
}

return tempset;
}


function subset(set){
if(this.size()>set.size()){
return false;
}

else{
for(var key in this.dataStore)
{

if(!set.contains(key)){
return false;
}

}

}

return true;

}


function size(){
return this.dataStore.length;

}


function difference(set)
{

var tem,pset=new set();

for(var key in this.dataStore)
{
if(!set.contains(key))
{
tempset.add(key);
}

}

return tempset;

}

JavaScript实现集合

标签:

原文地址:http://www.cnblogs.com/aobama/p/4347001.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!