vote up 0 vote down star

I need to store a list of key value pairs of (integer, boolean) in .NET

When I use a dictionary it re-orders them. Is there a built in collection that will handle this.

flag

71% accept rate
What's more important, accessing the value by key in constant time, or being able to iterate over the items in the insertion order? – Rob Sep 28 '08 at 21:17
There's no reason an implementation couldn't use both a hash table and a linked list to give both properties. Java has a linked hash map: java.sun.com/j2se/1.4.2/… – Jamie Sep 28 '08 at 21:49
Of course there's no reason, but he's asking about a built-in way. – Vinko Vrsalovic Sep 28 '08 at 21:55

7 Answers

vote up 7 vote down check
    List<KeyValuePair<int, bool>> l = 
                        new List<KeyValuePair<int, bool>>();
    l.Add(new KeyValuePair<int, bool>(1, false));
link|flag
vote up 3 vote down

If you want to preserve insertion order, why not use a Queue?

http://msdn.microsoft.com/en-us/library/6tc79sx1(VS.71).aspx

A Dictionary reorders the elements for faster lookup. Preserving insertion order would defeat that purpose...

link|flag
vote up 0 vote down

You could just create a list of KeyValuePairs:

var myList = new List<KeyValuePair<int, bool>>();
link|flag
vote up -2 vote down

The dictionary is supposed to reorder them, the a map by itself has no notion of order.

There is a class in .Net that supports that notion:

SortedDictionary<Tkey, Tvalue>

it requires that the Tkey type implements de IComparable interface so it known how to sort items. This way when your return the keys or the values they should be in the order the IComparable implementation specifies. For integers of course that is a trivial:

a < b
link|flag
vote up 0 vote down

Ordered dictionary allows retreival by index or by key.

link|flag
vote up 0 vote down

OrderedDictionary is the way to go. It provides O(1) retreival and O(n) insert. For more detailed info see codeproject

link|flag
vote up 0 vote down

What about an array?

KeyValuePair<int, bool>[] pairs

A list might be more useful when you want to add pairs after initialization of the collection.

List<KeyValuePair<int, bool>>
link|flag

Your Answer

Get an OpenID
or

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