vote up 5 vote down star

Is it safe to assume that two itterations over the same collection will return the objects in the same order? Obviously, it is assumed that the collection has not otherwise been changed.

flag

40% accept rate

7 Answers

vote up 5 vote down check

Short answer - yes.

Obviously, though, the order of the items in the collection may not be exactly as they were inserted, depending on the type of collection (a dictionary, for example).

But you will get the same results each time you iterate over a single, unmodified collection using a foreach loop.

link|flag
hmmmm... seems both of us did the same thing. Wrote one sentence, posted it, and then immediately edited it to elaborate. – James Curran Oct 3 '08 at 14:25
Indeed. I think your answer is more appropriate than mine, hopefully the OP will tag it as the definitive. Certainly seems to be winning the popular vote :) – NM Oct 3 '08 at 14:33
The problem with tagging it as the definitive answer, of course, is that it's not accurate! – Steve Morgan Oct 3 '08 at 14:39
@Steve Morgan, he did qualify it by saying that for most collections, "Yes" and it depends on the collection type. I think that your point is well taken, but to say that it's not accurate... I'm not sure about that. – Lloyd Cotten Oct 3 '08 at 15:32
vote up 17 vote down

It depends on the collection type. For most collections, the answer is "Yes".

However, this is not guaranteed. The docs of a collection type should specify whether or not it does, but as most do, that detail is generally over looked. However, if it is not stable, it would be a tremendous oversight if the docs didn't mention that.

link|flag
vote up 0 vote down

I would say that for most collection it is safe to assume this. It's not beyond the realms of possibility that a certain collection could have the enumerator implemented in a non-deterministic way, but that's probably not going to happen...

link|flag
Depends if you like having code that's "probably" going to work. Personally I like to be more confident than that! – MarkJ Feb 26 at 17:25
vote up 5 vote down

While the answer is “yes” for all builtin collections and probably any sane collection class out there, the documentation doesn't have any constraints formulated for IEnumerable. Therefore, nothing tells us that every iteration must be stable.

I could imagine the following use case:

foreach (int i in new Shuffler(1, 2, 3, 4, 5, 6, 7, 8, 9))
    Console.WriteLine(i);

This might well be implemented as a class that yields a different ordering for each iteration.

So – if you also want to consider strange borderline cases, the answer should be “no”.

link|flag
Uh, did James change his answer? When I wrote mine, it was still original. :-/ – Konrad Rudolph Oct 3 '08 at 14:29
excellent example of a case when the order would not be consistent! – Timothy Carter Oct 3 '08 at 14:36
vote up 2 vote down

While typically, the elements will be returned in the same order, there's absolutely no guarantee. It's entirely dependant on the internal implementation of the collection class.

I can see a case for a collection class that's specifically designed to return elements in a random order, for example.

In short, unless you know the internal implementation of the collection class, don't assume anything about the order.

link|flag
vote up 3 vote down

You can't guarantee this unless you know the concrete implementation of the class you're iterating over.

Collections that have a defined element order (e.g. List<T>) will enumerate in a stable order.

For collections where the state of the object doesn't change it's highly likely that elements will come back in the same order, e.g. Dictionary<K,V>, although this not guaranteed by the specification.

As an example of where this would not be the case, you could imagine a hashtable based dictionary implementation that compacts or resizes the table asynchronously. Such an implementation would not guarantee a stable iteration order.

link|flag
vote up 0 vote down

Re "unmodified" (NM's reply) - note that many complex containers like Dictionary do not guarantee to preserve order. Sometimes adding an item will make it appear last (giving the impression that order is preserved), and sometimes it will cause the internal buckets to re-organise, giving a completely different order.

Things like SortedList<,> etc obviously have their own rules.

link|flag

Your Answer

Get an OpenID
or

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