Lokang 

C++ and MySQL

Multi-Dimensional

Multi-Dimensional Arrays in C++ are arrays that have more than one dimension. They can be thought of as arrays of arrays, where each element in the array is itself an array. The most common form of a multi-dimensional array is a two-dimensional array, often used to represent matrices or grids. However, C++ allows for arrays with any number of dimensions.

1. Two-Dimensional Arrays

Declaration and Initialization

A two-dimensional array is declared by specifying the data type, the array name, and two sizes: one for the number of rows and one for the number of columns.

int matrix[3][4];  // A 2D array with 3 rows and 4 columns

You can also initialize a two-dimensional array at the time of declaration:

int matrix[3][4] = {
   {1, 2, 3, 4},
   {5, 6, 7, 8},
   {9, 10, 11, 12}
};

Alternatively, you can omit the inner braces:

int matrix[3][4] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};

Accessing and Modifying Elements

Elements in a two-dimensional array are accessed using two indices: the first for the row and the second for the column.

int element = matrix[1][2];  // Accesses the element in the second row, third column (7)
matrix[2][3] = 20;  // Modifies the element in the third row, fourth column

Iterating Through Two-Dimensional Arrays

You can use nested loops to iterate through all the elements of a two-dimensional array:

for (int i = 0; i < 3; i++) {
   for (int j = 0; j < 4; j++) {
       std::cout << matrix[i][j] << " ";
   }
   std::cout << std::endl;
}

This will print the matrix as:

1 2 3 4 
5 6 7 8 
9 10 11 12 

Passing Two-Dimensional Arrays to Functions

When passing a two-dimensional array to a function, you need to specify the size of the second dimension (columns) in the function signature:

void printMatrix(int matrix[3][4]) {
   for (int i = 0; i < 3; i++) {
       for (int j = 0; j < 4; j++) {
           std::cout << matrix[i][j] << " ";
       }
       std::cout << std::endl;
   }
}

You can also pass it using a pointer notation:

void printMatrix(int (*matrix)[4], int rows) {
   for (int i = 0; i < rows; i++) {
       for (int j = 0; j < 4; j++) {
           std::cout << matrix[i][j] << " ";
       }
       std::cout << std::endl;
   }
}

2. Three-Dimensional Arrays

Declaration and Initialization

A three-dimensional array adds another level of indexing, representing an array of matrices:

int cube[2][3][4];  // A 3D array with 2 layers, 3 rows, and 4 columns

Initialization can be done similarly:

int cube[2][3][4] = {
   {
       {1, 2, 3, 4},
       {5, 6, 7, 8},
       {9, 10, 11, 12}
   },
   {
       {13, 14, 15, 16},
       {17, 18, 19, 20},
       {21, 22, 23, 24}
   }
};

Accessing and Modifying Elements

Elements are accessed using three indices, corresponding to the layer, row, and column:

int element = cube[1][2][3];  // Accesses the element in the second layer, third row, fourth column (24)
cube[0][1][2] = 30;  // Modifies the element in the first layer, second row, third column

Iterating Through Three-Dimensional Arrays

You can use three nested loops to iterate through all the elements:

for (int i = 0; i < 2; i++) {
   for (int j = 0; j < 3; j++) {
       for (int k = 0; k < 4; k++) {
           std::cout << cube[i][j][k] << " ";
       }
       std::cout << std::endl;
   }
   std::cout << "Layer " << i + 1 << " complete." << std::endl;
}

3. Dynamic Multi-Dimensional Arrays

For dynamic multi-dimensional arrays, where the size is not known at compile time, you use pointers and dynamic memory allocation (new and delete).

Dynamic Two-Dimensional Arrays

int rows = 3, cols = 4;
int** matrix = new int*[rows];  // Allocate an array of int pointers (rows)
for (int i = 0; i < rows; i++) {
   matrix[i] = new int[cols];  // Allocate an array of ints (columns) for each row
}
// Accessing and modifying elements
matrix[1][2] = 5;
// Deallocating memory
for (int i = 0; i < rows; i++) {
   delete[] matrix[i];  // Delete each row
}
delete[] matrix;  // Delete the array of pointers

Dynamic Three-Dimensional Arrays

int layers = 2, rows = 3, cols = 4;
int*** cube = new int**[layers];  // Allocate an array of int** pointers (layers)
for (int i = 0; i < layers; i++) {
   cube[i] = new int*[rows];  // Allocate an array of int* pointers (rows) for each layer
   for (int j = 0; j < rows; j++) {
       cube[i][j] = new int[cols];  // Allocate an array of ints (columns) for each row
   }
}
// Accessing and modifying elements
cube[1][2][3] = 10;
// Deallocating memory
for (int i = 0; i < layers; i++) {
   for (int j = 0; j < rows; j++) {
       delete[] cube[i][j];  // Delete each row
   }
   delete[] cube[i];  // Delete the array of rows for each layer
}
delete[] cube;  // Delete the array of layers

4. Advantages and Use Cases of Multi-Dimensional Arrays

  • Matrices and Grids: Multi-dimensional arrays are ideal for representing data structures like matrices and grids, common in mathematical computations and games.
  • 3D Space Representations: Three-dimensional arrays are used in graphics, simulations, and scientific computations to represent 3D spaces.
  • Tables of Data: Two-dimensional arrays can represent tables, where each row corresponds to a record and each column to a field.

5. Limitations

  • Complexity: Multi-dimensional arrays are more complex to manage than single-dimensional arrays, especially when dealing with dynamic memory allocation.
  • Memory Usage: They can consume large amounts of memory, especially for higher dimensions, and require careful management to avoid memory leaks.

Example:

Here's a complete example demonstrating various operations on a two-dimensional array:

#include <iostream>
int main() {
   // Declaration and initialization of a 2D array
   int matrix[3][4] = {
       {1, 2, 3, 4},
       {5, 6, 7, 8},
       {9, 10, 11, 12}
   };
   // Accessing and modifying elements
   std::cout << "Element at [1][2]: " << matrix[1][2] << std::endl;  // Outputs 7
   matrix[2][3] = 20;
   std::cout << "Modified element at [2][3]: " << matrix[2][3] << std::endl;  // Outputs 20
   // Iterating through the 2D array
   std::cout << "Matrix elements:" << std::endl;
   for (int i = 0; i < 3; i++) {
       for (int j = 0; j < 4; j++) {
           std::cout << matrix[i][j] << " ";
       }
       std::cout << std::endl;
   }
   return 0;
}

Output:

Element at [1][2]: 7
Modified element at [2][3]: 20
Matrix elements:
1 2 3 4 
5 6 7 8 
9 10 11 20 

This example illustrates the basic operations you can perform with multi-dimensional arrays in C++.