Is there a way to use a foreach loop to iterate through a collection backwards or in a completely random order?
|
|
|
|
|
|
|
As other answers mention, the Here's a random enumeration extension method:
Your usage would be:
|
||||
|
|
|
Using
For a random order you'd have to sort it randomly using
|
||||
|
|
|
I don't think there is a way to do so directly, but it's pretty much Example: if you use the LINQ extension method Important: |
||
|
|
|
|
As of C# 2.0 you have the ability to use the yield keyword to implement custom iterators really easy. You can read more about the yield keyword over at MSDN http://msdn.microsoft.com/en-us/library/9k7k7cf0.aspx You can think of a yield as the ability to return a value from inside a loop, but you should refer to the link above for a full explanation of what they are and what they can do. I wrote a short example on how to implement a couple of custom iterators. I've implemented them as extension methods (http://msdn.microsoft.com/en-us/library/bb383977.aspx) to make the code a bit more stream lined and I also use array initializers (http://msdn.microsoft.com/en-us/library/aa664573.aspx) to set the initial values for the list of integers. Neither extension methods nor array initializers are necessary for implementing custom iterators but they are nice features of c# 3.0 which helps write cleaner code Here are my examples. It shows how to iterate over a list of integers by only returning Odd numbers, Even numbers, the numbers in reversed or in a completly random fashion.
|
||
|
|
|
|
I actually liked cfeduke approach with LINQ and it bugs me that it slipped my mind. To add to my previous example. If you want to do the Odd and Even iterations with the help of LINQ you can use
|
||
|
|
|
|
Using an
As well, you can use the
|
||
|
|
|
|
You could sort the List by supplying your own Comparator and iterate over that one. |
||
|
|
|
|
you can do it backwards:
Not certain about the exact syntax, but that's the paradigm. As for completely random order, you can access a collection element via it's index. To ensure you hit every item, you would need to keep track of which elements you had already processed (probably by copying the collection and then removing the element after access). EDIT: More details for random access The code for the random access could look something like this:
|
||||||||||
|
|
|
Do you want to rand a collection and interect with it? If yes, try this:
|
||||
|
|
|
From my reading of the C# Language Specification, the foreach iteration statement depends on the struct/class/interface which is being iterated having the GetEnumerator() function defined upon it. The object returned by GetEnumerator() must have MoveNext() defined as a member function. MoveNext() is defined as accessing the "first" object in the list on its first call, then the "next" on subsequent calls, returning true until no further elements exist in the list, upon which it returns false. The feature Domenic refers to, yield return, first appears in the 2.0 version of the specification, and does appear to be useful for this purpose. For version 1.1, your only option would be to derive a new struct/class/interface from your base and override GetEnumerator() to return a new IEnumerator, where the MoveNext() function would follow different rules in select the first collection element and any subsequent collection element. My own recommendation would be to use an indexed collection, then use a for loop with an appropriate index calculation (here one could use a random number generator if necessary, with an integer array or some other technique for verifying that the same index value is not used twice) if you have to do this in actual practice. |
||
|
|
|
|
Use random ordering
|
||
|
|
