-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc21bd9
commit 2a4bdb4
Showing
1 changed file
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/* Sets */ | ||
|
||
function mySet() { | ||
// the var collection will hold the set | ||
var collection = []; | ||
// this method will check for the presence of an element and return true or false | ||
this.has = function(element) { | ||
return (collection.indexOf(element) !== -1); | ||
}; | ||
// this method will return all the values in the set | ||
this.values = function() { | ||
return collection; | ||
}; | ||
// this method will add an element to the set | ||
this.add = function(element) { | ||
if(!this.has(element)){ | ||
collection.push(element); | ||
return true; | ||
} | ||
return false; | ||
}; | ||
// this method will remove an element from a set | ||
this.remove = function(element) { | ||
if(this.has(element)){ | ||
index = collection.indexOf(element); | ||
collection.splice(index,1); | ||
return true; | ||
} | ||
return false; | ||
}; | ||
// this method will return the size of the collection | ||
this.size = function() { | ||
return collection.length; | ||
}; | ||
// this method will return the union of two sets | ||
this.union = function(otherSet) { | ||
var unionSet = new mySet(); | ||
var firstSet = this.values(); | ||
var secondSet = otherSet.values(); | ||
firstSet.forEach(function(e){ | ||
unionSet.add(e); | ||
}); | ||
secondSet.forEach(function(e){ | ||
unionSet.add(e); | ||
}); | ||
return unionSet; | ||
}; | ||
// this method will return the intersection of two sets as a new set | ||
this.intersection = function(otherSet) { | ||
var intersectionSet = new mySet(); | ||
var firstSet = this.values(); | ||
firstSet.forEach(function(e){ | ||
if(otherSet.has(e)){ | ||
intersectionSet.add(e); | ||
} | ||
}); | ||
return intersectionSet; | ||
}; | ||
// this method will return the difference of two sets as a new set | ||
this.difference = function(otherSet) { | ||
var differenceSet = new mySet(); | ||
var firstSet = this.values(); | ||
firstSet.forEach(function(e){ | ||
if(!otherSet.has(e)){ | ||
differenceSet.add(e); | ||
} | ||
}); | ||
return differenceSet; | ||
}; | ||
// this method will test if the set is a subset of a different set | ||
this.subset = function(otherSet) { | ||
var firstSet = this.values(); | ||
return firstSet.every(function(value) { | ||
return otherSet.has(value); | ||
}); | ||
}; | ||
} | ||
|
||
var setA = new mySet(); | ||
var setB = new mySet(); | ||
setA.add("a"); | ||
setB.add("b"); | ||
setB.add("c"); | ||
setB.add("a"); | ||
setB.add("d"); | ||
console.log(setA.subset(setB)); | ||
console.log(setA.intersection(setB).values()); | ||
console.log(setB.difference(setA).values()); | ||
|
||
var setC = new Set(); | ||
var setD = new Set(); | ||
setC.add("a"); | ||
setD.add("b"); | ||
setD.add("c"); | ||
setD.add("a"); | ||
setD.add("d"); | ||
console.log(setD.values()) | ||
setD.delete("a"); | ||
console.log(setD.has("a")); | ||
console.log(setD.add("d")); |