up vote 7 down vote favorite
2
share [g+] share [fb]

I'm looking for a decent implementation of a set data structure in JavaScript. It should be able to support elements that are plain JavaScript objects.

So far I only found Closure Library's structs.Set, but I don't like the fact that it modifies my data.

Any ideas?

link|improve this question

56% accept rate
feedback

2 Answers

up vote 6 down vote accepted

You could build a simple wrapper around the keys of a hash table provided by my jshashtable. I have one knocking around somewhere that I will dig out later.

UPDATE

I have completed and tested an implementation of HashSet and uploaded it to the jshashtable project on Google Code. You can download it or view the source.

var s = new HashSet();
var o1 = {name: "One"}, o2 = {name: "Two"};
s.add(o1);
s.add(o2);
s.values(); // Array containing o1 and o2
link|improve this answer
1  
can you explain how your library calculates object hash codes? – user187291 Mar 27 '10 at 1:16
It's in the documentation, but in summary: the hash codes are strings, and you can provide a function to calculate hash codes to the Hashtable constructor (as well as a function that compares two object and decides if they're equal). Otherwise, it looks for a method called hashCode() on keys. As a last resort, it attempts to convert the key to a string using toString() or String(). If all your keys hash to the same value (e.g. "[object Object]") because you haven't used any of the above mechanisms then they'll all go into the same bucket and it has to use your simple linear search. – Tim Down Mar 27 '10 at 11:27
thanks!........ – user187291 Mar 27 '10 at 20:55
feedback

I don't think there's a way to work with object's hash code other than store it in the object itself. Strictly speaking, it's possible to create a set class without hashing, using simple linear search, but this would hardly be efficient.

link|improve this answer
Indeed. There is no way to get an object's identity in JS other than to compare it with every other object. – bobince Mar 26 '10 at 18:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.