Does anyone know if there is a good equivelent to Java's Set collection in C#.

It's one of the few things I miss from having moved to C#.

I am aware that you can have a "pretend" set using a Dictionary or Hashtable and only bothering to populate the keys. But it's not very elegant.

It's wierd every other way I turn in C# somone seems to have thought of a solution and built it into the framework, except for sets...

link|improve this question

75% accept rate
feedback

9 Answers

up vote 117 down vote accepted

If you're using .NET 3.5, you can use HashSet<T>. It's true that .NET doesn't cater for sets as well as Java does though.

The Wintellect PowerCollections may help too.

link|improve this answer
2  
I hadn't noticed that being added. Microsoft have answered my prayers... – Omar Kooheji Oct 9 '08 at 9:08
7  
I suspect that Set is a keyword in some languages, which could cause issues. – Jon Skeet Jun 24 '09 at 8:10
3  
Set is a keyword in VB. – Pavel Minaev Nov 26 '09 at 1:02
9  
The reason for calling it HashSet, instead of just Set, is the same as in Java- "Set" describes an interface, whereas "HashSet" describes an implementation- specifically, this is a Set backed by a Hash Map. In this way, we know (or should strongly expect) that insert and access should take O(1) access time, vs a "LinkedListSet" which would lead us to expect insert and access to take O(n) time. – David Souther Jul 16 '10 at 16:16
6  
@Louis: Which Set are you talking about? Java has lots of different implementations of Set for various situations. .NET had one in .NET 3.5 (HashSet) and two in .NET 4 (HashSet and SortedSet). The fact that we had to wait until .NET 3.5 to start with is pretty surprising. – Jon Skeet Feb 28 '11 at 8:20
show 5 more comments
feedback

Try HashSet

http://msdn.microsoft.com/en-us/library/bb495294.aspx

link|improve this answer
3  
Unfortunately, HashSets weren't added until just recently. If you're working in an older version of the framework, you're going to have to stick with your munged Dictionary<> or Hashtable. – Greg D Oct 8 '08 at 16:36
feedback

I use Iesi.Collections http://www.codeproject.com/KB/recipes/sets.aspx

It's used in lot of OSS projects, I first came across it in NHibernate

link|improve this answer
feedback

Have a look at PowerCollections over at CodePlex. Apart from Set and OrderedSet it has a few other usefull collection types such as Deque, MultiDictionary, Bag, OrderedBag, OrderedDictionary and OrderedMultiDictionary.

For more collections, there is also the C5 Generic Collection Library.

link|improve this answer
feedback

I use a wrapper around a Dictionary<T, object>, storing nulls in the values. This gives O(1) add, lookup and remove on the keys, and to all intents and purposes acts like a set.

link|improve this answer
feedback

You can apply set operations to any two IEnumerables using the LINQ extension methods, which sometimes is sufficient: IEnumerable extension methods.

link|improve this answer
3  
If you have LINQ extension methods, you have 3.5, and therefore HashSet<T>. It's also worth noting that IEnumerable "set-like" methods are rather inefficient compared to a proper set implementation. – Pavel Minaev Nov 26 '09 at 1:03
feedback

I know this is an old thread, but I was running into the same problem and found HashSet to be very unreliable because given the same seed, GetHashCode() returned different codes. So, I thought, why not just use a List and hide the add method like this

public class UniqueList<T> : List<T>
{
    public new void Add(T obj)
    {
        if(!Contains(obj))
        {
            base.Add(obj);
        }
    }
}

Because List uses the Equals method solely to determine equality, you can define the Equals method on your T type to make sure you get the desired results.

link|improve this answer
The reason you wouldn't want to use this is because List.Contains is of O(n) complexity which means that your Add method now becomes O(n) complexity as well. Assuming the inner collection doesn't need to be resized, Add for both List and HashMap should be of O(1) complexity. TLDR: This will work, but it's hacky and less efficient. – Richard Marskell - Drackir Feb 24 at 20:28
1  
Sure, if your objects don't return an appropriate value for GetHashCode, you should not put them into a hash-based container. It would be better to fix GetHashCode than to use a less efficient container. – bmm6o Mar 5 at 17:40
feedback

You could implement your own workable set implementation in a couple of hours. I used this when I had to do it (sorry, I don't have the code handy): http://java.sun.com/j2se/1.4.2/docs/api/java/util/Set.html

link|improve this answer
feedback

HashSet Data Structure

The C# HashSet data structure was introduced in the .NET Framework 3.5. A full list of the implemented members can be found at the HashSet MSDN page.

So first off, a Set data structure is a list with no duplicate values. It is more or less modeled after a mathematical set, which has only unique elements.

Although a HashSet is a list of elements, it does not inherit the IList interface. Instead it just inherits the ICollection interface. What this means is elements inside a HashSet cannot be accessed through indices, only through an enumerator (which is an iterator).

Additionally, since a C#.NET HashSet is modeled after a mathematical set, certain functions were implemented such as Union, Intersection, IsSubsetOf, IsSupersetOf. These can come in handy when working with multiple sets.

A resulting difference between a HashSet and a List is that the HashSet's Add method is a boolean function, which returns true of an element was added and false if it wasn't (because it was not unique).

Why not List<>

Since a C# HashSet is simply a collection of unique objects, you might wonder why it has to be a data structure. A normal List could have the same behavior by checking if an object is found in the List before adding it.

The short answer is speed. Searching through a normal List gets very slow very fast as more elements are added. A HashSet requires a structure design that will allow for fast searching and insertion speeds.

Benchmarks

Let's compare the performance speed of a C# HashSet vs a C# List.

Each trial consisted of adding integers from 0 to 9,999 to each collection. However, mod 25 was applied to each integer. Mod 25 makes the maximum types of items 25. Since 10,000 elements were added, this forced 400 collisions to occur, giving the data structures a chance to use their searching algorithms. Times were measured 3 times after 10,000 trials and averaged out.

Don't pay too much attention to the specific running times of the tests since they are dependent on my hardware, but look at how they compare to each other.

HashSet - average time: 2290 milliseconds List - average time: 5505 milliseconds

Now let's make elements objects instead of primitive types. I wrote a quick Person class with three fields: Name, LastName, and ID. Since I did not include any specific way to compare objects, all the elements will be added without collisions. This time 1,000 Person objects were added to each collection for a single trial. The total times of 3 sets of 1,000 trials were averaged out.

HashSet - average time: 201 ms List - average time: 3000 ms

As you can see, the difference in running times becomes astronomical when using objects, making C# HashSet advantageous.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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