Initialization of a 3D vector with some value

Initialization of 3D vector with some value in this method we are creating a vector with x,y, and z dimensions with some value inside it.

Syntax:

vector<vector<vector<data_type>>> vector_name(x, vector<vector<data_type>>(y, vector<data_type>(z,value)));

Example:

C++




// C++ program to initialise
// 3D vector Initialization of
// 3D vector with some value
#include <iostream>
#include <vector>
using namespace std;
 
int main()
{
    // Initialising a 3D vector with 0 as initial value
    vector<vector<vector<int> > > v(
        2, vector<vector<int> >(3, vector<int>(4, 2)));
 
    // Printing the 3d vector
    for (int i = 0; i < v.size(); i++) {
        for (int j = 0; j < v[i].size(); j++) {
            for (int k = 0; k < v[i][j].size(); k++) {
                cout << v[i][j][k] << " ";
            }
            cout << endl;
        }
    }
 
    return 0;
}


Output

2 2 2 2 
2 2 2 2 
2 2 2 2 
2 2 2 2 
2 2 2 2 
2 2 2 2 


How to Initialize 3D Vector in C++ STL?

Prerequisite: Vector in C++

Vectors in C++ are the same as arrays with dynamic sizes having the ability to resize themselves, we can insert and remove elements from the end. 

Similar Reads

3-D Vector

A 3D vector is a type of vector having 3 Dimensions means a vector storing a 2-D vector inside it, similar to a 2-D array....

1. Standard Initialization of a 3D vector

Standard initialization of a 3D vector is a method where we initialize by declaring and then inserting elements using the push_back( ) function....

2. Initialization of a 3D vector with given dimensions

...

3. Initialization of a 3D vector with some value

Given below is the syntax for initializing the 3D vector with a given size in C++. The initialized value is 0 by default and thus different values can be assigned by traversing through loops....