Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8222611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:20:16+00:00 2026-06-07T14:20:16+00:00

I need to get random numbers that are uniform distributed. The issue is I

  • 0

I need to get random numbers that are uniform distributed.
The issue is I need every time the app start to check for some MAX number and then go randomly on all the numbers from 0 to MAX without passing twice on same number (till a round up).

Now I’m using: arc4random()%maxNumber

But that really problematic because I get lots on return even 3 times on same number in a row.

Please help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T14:20:18+00:00Added an answer on June 7, 2026 at 2:20 pm

    This is what I finally did:

    -(NSInteger)getNextRandomNumber :(NSInteger)maxNumber{
    
    if (indexSet == nil){
        indexSet = [[NSMutableIndexSet alloc] init];
    }
    if ([indexSet count] >= maxNumber){
        [indexSet init];
    }
    
    NSInteger randomGen = arc4random_uniform(maxNumber);
    BOOL foundNumber = FALSE;
    
    while (!foundNumber) {
        if ([indexSet containsIndex:randomGen]){
            randomGen = arc4random_uniform(maxNumber);
    
        }else{
            [indexSet addIndex:randomGen];
            foundNumber = TRUE;
        }
    }
    
    return randomGen;
    }
    

    If you use it pay attention to releasing the object, Also, I think I might miss one number (not sure) on my case it doesn’t matter so…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to get some random colors to draw a pie. My code works
I need to create a function that will generate 2 random numbers between x
Just need get some vals located in application.ini(main ini) in the Controller plugin I
I have two combobox. I need get some value from first combobox1 after combobox1
Here is a fun one: I need to generate random x/y pairs that are
I need to generate about 5,000 random numbers in my script, but the CPU
Let say that I would like to get an random double value wich is:
I am trying to create random longitude and latitudes. I need to create numbers
I'm in need of a C++ (pseudo, i don't care) random number generator that
I want to get 4 unique random floating point numbers in the range <0;9>.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.