vote up 1 vote down star

I need a HashSet that preserves insertion ordering, are there any implementations of this in the framework?

flag

4 Answers

vote up 3 vote down

That defeats the purpose of a HashSet. For sequences that need to persist order, look at List<T> or LinkedList<T> etc.

link|flag
1  
What happens if you need an ordered set? ie. the semantics of uniqueness of entries, but still needed ordering? – Matthew Scharley Oct 12 at 0:49
Wrap a collection around IList and IDictionary adding to both. – csharptest.net Oct 12 at 0:54
@Matthew I don't think the Framework provides a Set class in the sense you're describing. Somewhat unfortunate, but also not especially difficult to implement. – Rex M Oct 12 at 0:55
vote up 0 vote down

Rex is correct -- the entire purpose of a hash is to facilitate quick access to the data, which destroys ordering.

What, exactly, are you trying to do? List and linked lists preserve ordering, as Rex indicated. Sparse arrays might be an alternative? Maps and linked lists aren't going to do what you say you want.

link|flag
vote up 0 vote down

OrderedSet in Wintellect's Power Collections provides an implementation.

If you want a workaround that only uses framework stuff you can always defer making the list distinct till the end of the process and use the LINQ Distinct call at the end which preserves ordering.

link|flag
vote up 1 vote down

In the case that the CLR lacks what you're describing (which it seems to), I wrote a Set class a while back as an intellectual excercise that seems to have the semantics you describe. No guarantees beyond that it works though.

void Main()
{
    Set<int> foo = new Set<int>();
    foo.Add(5);
    foo.Add(10);
    foo.Add(5);
    foo.Add(2);

    // Prints 5, 10, 2
    foreach(int i in foo)
    {
    	i.Dump();
    }
}
link|flag

Your Answer

Get an OpenID
or

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