vote up 3 vote down star

I just saw this behaviour and I'm a bit surprised by it...

If I add 3 or 4 elements to a Dictionary, and then do a "For Each" to get all the keys, they appear in the same order I added them.

The reason this surprises me is that a Dictionary is supposed to be a HashTable internally, so I expected things to come out in ANY order (ordered by the hash of the key, right?)

What am I missing here? Is this a behaviour I can count on?

EDIT: OK, I thought already of many of the reasons why this might happen (like the separate list to entries, whether this is a coincidence, etc). My question is, does anyone know how this really works?

flag

69% accept rate

11 Answers

vote up 6 vote down check

If you use .NET Reflector on the 3.5 class libraries you can see that the implementation of Dictionary actually stores the items in an array (which is resized as needed), and hashes indexes into that array. When getting the keys, it completely ignores the hashtable and iterates over the array of items. For this reason, you will see the behavior you have described since new items are added at the end of the array. It looks like if you do the following:

add 1
add 2
add 3
add 4
remove 2
add 5

you will get back 1 5 3 4 because it reuses empty slots.

It is important to note, like many others have, you cannot count on this behavior in future (or past) releases.

link|flag
Ding Ding Ding Ding Ding Ding Ding !!!! And the price goes to Dolphin! Yes!! Thank you, this is actually the answer I was looking for (rather than what I was getting: "You don't understand Dictionaries). Thank you for taking the time to research that. – Daniel Magliola Jun 10 at 21:12
And as you said, in fact, removing 2 and adding 5 does give you 1 5 3 4 as the result (i tested with random strings, not just numbers). Thank you very much. – Daniel Magliola Jun 10 at 21:12
vote up 9 vote down

A dictionary retrieves items in hashed order. The fact that they came out in insertion order was a total coincidence.

The MSDN documentation says:

The order of the keys in the KeyCollection is unspecified, but it is the same order as the associated values in the ValueCollection returned by the Values property.

link|flag
well, not a total coincidence. With a small sample I've found they usually do come out in the same order as you added them. Still, good answer! – Danimal Sep 30 '08 at 18:28
I don't think it was a coincidence. I did change the order of addition of the same elements to see if it'd change. So that's not what happenes. It may be that .Net will do it differently if I get a big enough amount of data. – Daniel Magliola Sep 30 '08 at 18:57
It's still a coincidence you shouldn't count on, if you read the documentation. Even if you dove into the code to understand why it's doing that for small numbers of keys, the # may change, and or it may never be true at all in older/newer framework versions. – Brad Wilson Oct 1 '08 at 5:25
It isn't a coincidence in this case, it is an implementation detail that is specifically not exposed. – Dolphin Jun 10 at 16:59
vote up 0 vote down

From what I know this shouldn't be a behavior to rely on. To check it quickly use the same elements and change the order in which you add them to the dictionary. You'll see if you get them back in the order they were added, or it was just a coincidence.

link|flag
I obviously did that :-) I get them in the same order I add them, it wasn't a coincidence – Daniel Magliola Sep 30 '08 at 18:56
vote up 1 vote down

A quote from MSDN :

The order of the keys in the Dictionary<(Of <(TKey, TValue>)>).KeyCollection is unspecified, but it is the same order as the associated values in the Dictionary<(Of <(TKey, TValue>)>).ValueCollection returned by the Dictionary<(Of <(TKey, TValue>)>).Values property.

link|flag
vote up 1 vote down

What keys did you add with in your test, and in what order?

link|flag
vote up 5 vote down

You cannot count on this behavior, but it's not surprising.

Consider how you would implement key iteration for a simple hash table. You would need to iterate over all the hash buckets, whether or not they had anything in them. Getting a small data set from a big hashtable could be inefficient.

Therefore it might be a good optimization to keep a separate, duplicate list of keys. Using a double-linked list you still get constant-time insert/delete. (You would keep a pointer from the hashtable bucket back to this list.) That way iterating through the list of keys depends only on the number of entries, not on the number of buckets.

link|flag
vote up 2 vote down

I think this comes from the old .NET 1.1 times where you had two kinds of dictionaries "ListDictionary" and "HybridDictionary". ListDictionary was a dictionary implemented internally as an ordered list and was recommended for "small sets of entries". Then you had HybridDictionary, that was initially organized internally as a list, but if it grew bigger than a configurable threshold would become a hash table. This was done because historically proper hash-based dictionaries were considered expensive. Now a days that doesn't make much sense, but I suppose .NET just based it's new Dictionary generic class on the old HybridDictionary.

Note: Anyway, as someone else already pointed out, you should never count on the dictionary order for anything

link|flag
vote up 1 vote down

Your entries might all be in the same hash bucket in the dictionary. Each bucket is probably a list of entries in the bucket. This would explain the entries coming back in order.

link|flag
vote up 0 vote down

Up to a certain list size it is cheaper to just check every entry instead of hashing. That is probably what is happening.

Add 100 or 1000 items and see if they are still in the same order.

link|flag
The 3.5 implementation will enumerate them in order for any number of elements (Check my answer for more details). – Dolphin Jun 10 at 16:56
vote up 0 vote down

The question and many of the answers seem to misunderstand the purpose of a hashtable or dictionary. These data structures have no specified behaviors with respect to the enumeration of the values (or in fact the keys) of the items contained in the data structure.

The purpose of a dictionary or hashtable is to be able to efficiently lookup a specific value given a known key. The internal implementation of any dictionary or hashtable should provide for this efficiency in lookups but need not provide any specific behavior with respect to enumerations or "for each" type iterations on the values or keys.

In short, the internal data structure can store and enumerate these values in any manner that it wishes, including the order that they were inserted.

link|flag
Yep, I agree, which is why I made the question in the first place... Given that the internal implementation doesn't care about enumeration, and given how I understand a hashtable works internally, then why is it still ordered? I understand I shouldn't care... I'm just very curious on what kind of implementation would give these results. (I'm just trying to learn here) – Daniel Magliola May 5 at 17:42
vote up -1 vote down

i have encountered same kinod of issue, but a reverted type, i have used hybrid dictionary and so i am getting unordered when i get keys, but intended business use says i should get by the order i have inserted, and so i tried with ordered dictionary instead. and it works

but as of i know other dicitonaries won't guarentee ordered keys

link|flag

Your Answer

Get an OpenID
or

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