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

  • SEARCH
  • Home
  • 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 8885161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:14:28+00:00 2026-06-14T21:14:28+00:00

I need to generate a random maze with given width and height. I could

  • 0

I need to generate a random maze with given width and height. I could do this in Perl with Depth-first search algorithm, in which I use 2D arrays, something like this:

    for my $i (0 .. $h - 1) {
        for my $j (0 .. $w - 1) {
            push @{ $cell[$i] }, '1';
        }
        push @{ $cell[$i] }, '0';
    }
    for my $i (0 .. $w) {
        $cell[$h][$i] = '';
    }

While in Objective C, there’s no 2D array. I’m kind of lost now. What is the equivalent of 2D array in Objective C so that I pretty much can use the same data structure as in Perl?
Thanks.

  • 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-14T21:14:29+00:00Added an answer on June 14, 2026 at 9:14 pm

    One way is to use Objective-C style array:

    NSMutableArray *cell = [NSMutableArray arrayWithCapacity:h];
    for (int i=0; i<h; ++i) {
        NSMutableArray *row = [NSMutableArray arrayWithCapacity:w];
        for (int j=0; j<w; ++j) {
            // use a random number
            [row addObject:[NSNumber numberWithInt:rand()]];
        }
        // add one row
        [cell addObject:row];
    }
    

    Another way is just to use C style array:

    int **cell = malloc(h*sizeof(int *));
    for (int i=0; i<h; ++i) {
        cell[i] = malloc(w*sizeof(int));
        for (int j=0; j<w; ++j) {
            cell[i][j] = rand();
        }
    }
    
    // after you used it remeber to free it
    for (int i=0; i<h; ++i) {
        free(cell[i]);
    }
    free(cell);
    cell = NULL;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a project in which I need to generate 8 random
I need to generate a series of N random binary variables with a given
I need a tool which generates random JSON objects. I want to use this
I need to generate multiple random values under SQL Server 2005 and somehow this
I need to generate random BigDecimal value from given range. How to do it
I need to generate a random number from 1 to 5 which isn't already
I am developing a program in which I need to generate a random number
I need to generate 3 random numbers, the amount of which is equal to
I need to generate random names which I'll be using to create temporary files
I need to generate random strings in vb.net, which must consist of (randomly chosen)

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.