您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在JavaScript中實(shí)現(xiàn)一個set類,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
js集合set類的實(shí)現(xiàn)
/*js集合set類的實(shí)現(xiàn)*/ function Set() { this.dataStore = []; this.add = add;//新增元素 this.remove = remove;//刪除元素 this.size = size;//集合的元素個數(shù) this.union = union;//求并集 this.contains = contains;//判斷一個集合中是否包含某個元素 this.intersect = intersect;//交集 this.subset = subset;//判斷一個集合是否是另一個的子集 this.difference = difference;//求補(bǔ)集 this.show = show;//將集合元素顯示出來 } function add(data) { if (this.dataStore.indexOf(data) < 0) { this.dataStore.push(data); return true; } else { return false; } } function remove(data) { var pos = this.dataStore.indexOf(data); if (pos > -1) { this.dataStore.splice(pos,1); return true; } else { return false; } } function size() { return this.dataStore.length; } function show() { return "[" + this.dataStore + "]"; } function contains(data) { if (this.dataStore.indexOf(data) > -1) { return true; } else { return false; } } 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(this.dataStore[i]); } } return tempSet; } function subset(set) { if (this.size() > set.size()) { return false; } else { for(var member in this.dataStore) { if (!set.contains(member)) { return false; } } } return true; } function difference(set) { var tempSet = new Set(); for (var i = 0; i < this.dataStore.length; ++i) { if (!set.contains(this.dataStore[i])) { tempSet.add(this.dataStore[i]); } } return tempSet; } /*測試?yán)樱呵笱a(bǔ)集。屬于集合cis,不屬于集合it*/ var cis = new Set(); var it = new Set(); cis.add("Clayton"); cis.add("Jennifer"); cis.add("Danny"); it.add("Bryan"); it.add("Clayton"); it.add("Jennifer"); var diff = new Set(); diff = cis.difference(it); console.log(cis.show() + " difference " + it.show() + " -> " + diff.show());
這里使用在線HTML/CSS/JavaScript代碼運(yùn)行工具:http://tools.jb51.net/code/HtmlJsRun測試上述代碼,可得如下運(yùn)行結(jié)果:
關(guān)于怎么在JavaScript中實(shí)現(xiàn)一個set類就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。