2D Array

On Social Media

2D array can be defined as an array of arrays. The 2D array is organized as matrices which can be represented as the collection of rows and columns. However, 2D arrays are created to implement a relational database look alike data structure. It provides ease of holding bulk of data at once which can be passed to any number of functions wherever required.

Reference Videos: 2D Arrays

How to declare 2D Array

The syntax of declaring 2D array is very much similar to that of a one-dimensional array, given as follows.

int arr[max_rows][max_columns];

however, It produces the data structure which looks like following.

2D Array

How do we access data in a 2D array

Similar to one dimensional arrays, we can access the individual cells in a 2D array by using the indices of the cells. There are two indices attached to a particular cell, one is its row number while the other is its column number.

However, we can store the value stored in any particular cell of a 2D array to some variable x by using the following syntax(C/C++/Java).

int x = a[i][j];

where i and j is the row and column number of the cell respectively. We can assign each cell of a 2D array to 0 by using the following code:

for ( int i=0; i<n ;i++) 
{
for (int j=0; j<n; j++)
{
	a[i][j] = 0;
	}
}

Initializing 2D Arrays

We know that, when we declare and initialize one dimensional array in C programming simultaneously, we don’t need to specify the size of the array. However, this will not work with 2D arrays. We will have to define at least the second dimension of the array.

The syntax to declare and initialize the 2D array is given as follows.

int arr[2][2] = {0,1,2,3};

The number of elements that can be present in a 2D array will always be equal to (number of rows * number of columns).

Mapping 2D array to 1D array

When it comes to map a 2D array, most of us might think that why this mapping is required. However, 2 D arrays exist from the user point of view. 2D arrays are created to implement a relational database table lookalike data structure, in computer memory, the storage technique for 2D array is similar to that of a one dimensional array.

The size of a two dimensional array is equal to the multiplication of number of rows and the number of columns present in the array. We do need to map two dimensional array to the one dimensional array in order to store them in the memory.

A 3 X 3 2D array is shown in the following image. However, this array needs to be mapped to a one dimensional array in order to store it into the memory.

There are two main techniques of storing 2D array elements into memory

1. Row Major ordering

In row major ordering, all the rows of the 2D array are stored into the memory contiguously. Considering the array shown in the above image, its memory allocation according to row major order is shown as follows.

first, the 1st row of the array is stored into the memory completely, then the 2nd row of the array is stored into the memory completely and so on till the last row.

Column Major ordering

According to the column major ordering, all the columns of the 2D array are stored into the memory contiguously. The memory allocation of the array which is shown in in the above image is given as follows.

first, the 1st column of the array is stored into the memory completely, then the  2nd row of the array is stored into the memory completely and so on till the last column of the array.

Calculating the Address of the random element of a 2D array

Due to the fact that, there are two different techniques of storing the two dimensional array into the memory, there are two different formulas to calculate the address of a random element of the 2D array.

By Row Major Order

If array is declared by a[m][n] where m is the number of rows while n is the number of columns, then address of an element a[i][j] of the array stored in row major order is calculated as,

Address(a[i][j]) = B. A. + (i * n + j) * size

where, B. A. is the base address or the address of the first element of the array a[0][0] .

By Column major order

If array is declared by a[m][n] where m is the number of rows while n is the number of columns, then address of an element a[i][j] of the array stored in row major order is calculated as,

Address(a[i][j]) = ((j*m)+i)*Size + BA

    where BA is the base address of the array.


    On Social Media

    Leave a Reply

    Your email address will not be published. Required fields are marked *