Im using.
for (int i = 1, i<100, i++)
int i = arc4random() % array count;
But im getting repeats everytime so how can i full out the chosen int value from the range so when the program loops i will not get any dupe?
Thanks.
|
|
Im using.
But im getting repeats everytime so how can i full out the chosen int value from the range so when the program loops i will not get any dupe? Thanks.
|
||||||||
|
|
|
It sounds like you want shuffling of a set rather than "true" randomness. Simply create an array where all the positions match the numbers and initialize a counter:
Then, whenever you want a random number, use the following method:
This will return a random value from an ever-decreasing pool, guaranteeing no repeats. You will have to beware of the pool running down to zero size of course, and intelligently re-initialize the pool. This is a more deterministic solution than keeping a list of used numbers and continuing to loop until you find one not in that list. The performance of that sort of algorithm will degrade as the pool gets smaller. A C function using static values something like this should do the trick. Call it with
to set the pool up (with any number zero or greater specifying the size) or
to get the next number from the pool (any negative number will suffice). If the function can't allocate enough memory, it will return -2. If there's no numbers left in the pool, it will return -1 (at which point you could re-initialize the pool if you wish). Here's the function with a unit testing main for you to try out:
And here's the output from one run:
Keep in mind that, because it uses statics, it's not safe for calling from two different places if they want to maintain their own separate pools. If that were the case, the statics would be replaced with a buffer (holding count and pool) that would "belong" to the caller (a double-pointer could be passed in for this purpose). And, if you're looking for the "multiple pool" version, I include it here for completeness.
As you can see from the modified |
||||||||||
|
|
|
You need to keep track of the numbers you have already used (for instance, in an array). Get a random number, and discard it if it has already been used. |
||||
|
|
|
Without relying on external stochastic processes, like radioactive decay or user input, computers will always generate pseudorandom numbers - that is numbers which have many of the statistical properties of random numbers, but repeat in sequences. This explains the suggestions to randomise the computer's output by shuffling. Discarding previously used numbers may lengthen the sequence artificially, but at a cost to the statistics which give the impression of randomness. |
||
|
|
|
|
The best way to do this is create an array for numbers already used. After a random number has been created then add it to the array. Then when you go to create another random number, ensure that it is not in the array of used numbers. |
||
|
|
|
|
In addition to using secondary array to store already generated random numbers, invoking random no. seeding function before every call of random no. generation function might help to generate different seq. of random numbers in every run. |
||
|
|