Dynamic Memory Allocation for Two Dimensional Arrays in C++

August 3, 2010 at 3:39 pm 2 comments


In C++, a two-dimensional array can be declared simply like this

int a[10][20];

However, this declaration requires contanst array size and it is inconvenient when the array size vary. To avoid this issue, you can use dynamic two dimensional array. There are several ways to allocate a dynamic two-dimensional array in C++. In this post, I will show you three most frequent methods.

First one is flattening the two dimensional array into one dimensional array and using it as one dimensional array  

//Allocate
int *a = new int[m*n];

//Use a[m][n]
for ( int i = 0 ; i < m ; i++)
        for ( int j = 0 ; j < n ; j++)
                 a[i*m + j] = 1;

//Deallocate
delete[] a;
 

Second method is using an array of dynamic one-dimensional arrays. It makes use of dynamic 2D array be easier. However, elements of array may not be continuous in memory

//Allocate
int **a = new int*[m];
for ( int i = 0 ; i < m ; i++)
       a[i] = new int[n];
 
 
//Use a[m][n]
for ( int i = 0 ; i < m ; i++)
         for ( int j = 0 ; j < n ; j++)
                a[i][j] = 1;
 
//Deallocate
for ( int i = 0 ; i < m ; i++) delete[] a[i];
delete[] a;
 
 
The third one allows all elements of a 2D int array to be contiguous in memory and I like this way most.

 //Allocate
int **a = new int*[m];

int a[0] = new int[m*n];
for ( int i = 1 ; i < m ; i++)  a[i] = a[i-1] + n;
 

 //Use a[m][n]
for ( int i = 0 ; i < m ; i++)
        for ( int j = 0 ; j < n ; j++)
                a[i][j] = 1;

  
//Deallocate
delete[] a[0];
delete[] a;
 
If you prefer to performance, I recommend you to use the first method. This may be weird but I have tested on several codes.

Entry filed under: C++ Programming. Tags: , , , , , , .

Linux File System Layout Fixing Dead Pixels and Gray Lines on the iPhone Screen

2 Comments Add your own

  • 1. steve richards  |  April 25, 2012 at 6:12 am

    I tried to compile the third case with g++ and I got the following errors:

    error: array must be initialized with a brace-enclosed initializer
    error: invalid types ‘int[int]’ for array subscript
    error: type ‘int’ argument given to ‘delete’, expected pointer

    Which compiler did you use?

    Reply
    • 2. steve richards  |  April 25, 2012 at 6:30 am

      I just realized that the “int” before a[0] is causing the errors….
      Would it also be possible to access the elements of ‘a’ using a single index? I.e. a[0] … a[i] … a[m*n-1]?

      Reply

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Trackback this post  |  Subscribe to the comments via RSS Feed


Recent Posts


Follow

Get every new post delivered to your Inbox.