vote up 4 vote down star
2

I'm searching the way(s) to fill an array with numbers from 0 to a random. For example, from 0 to 12 or 1999, etc.

Of course, there is a for-loop:

var arr = int[n];
for(int i = 0; i < n; i++)
{
  arr[i] = i;
}

And I can make this method been an extension for Array class. But is there some more interesting ways?

flag

74% accept rate
1  
You could do some sort of functional implementation. You could populate a List<int> and use ToArray. Ultimately, I don't think there are any interesting solutions as the problem is not that interesting really. – BobbyShaftoe May 12 at 19:49
What do you want to do with the array? I like 'configurator's solution... – n8wrl May 12 at 19:50
Actually my solution gives you the same result as Enumerable.Range(0, n) - I forgot about that method for a while. – configurator May 12 at 21:16

3 Answers

vote up 29 vote down check

This already exists(returns IEnumerable, but that is easy enough to change if you need):

arr = Enumerable.Range(0, n);
link|flag
1  
You need to add a .ToArray() – David B May 12 at 20:09
vote up 6 vote down

The most interesting way in my mind produces not an array, but an IEnumerable<int> that enumerates the same number - it has the benefit of O(1) setup time since it defers the actual loop's execution:

public IEnumerable<int> GetNumbers(int max) {
    for (int i = 0; i < max; i++)
        yield return i;
}

This loop goes through all numbers from 0 to max-1, returning them one at a time - but it only goes through the loop when you actually need it.

You can also use this as GetNumbers(max).ToArray() to get a 'normal' array.

link|flag
vote up 1 vote down

The best answer depends on why you need the array. The thing is, the value of any array element is equal to the index, so accessing any element is essentially a redundant operation. Why not use a class with an indexer, that just returnes the value of the index? It would be indistinguishable from a real array and would scale to any size, except it would take no memory and no time to set up. But I get the feeling it's not speed and compactness you are after. Maybe if you expand on the problem, then a better solution will be more obvious.

link|flag

Your Answer

Get an OpenID
or

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