initializing 2D vector c++ code example
Example 1: initialize 2d vector of ints c++
auto M = 4;
auto N = 3;
auto default_value = 1;
std::vector<std::vector<int>> matrix(M, std::vector<int>(N, default_value));
Example 2: initializing 2d vector
vector<vector<int> > vec( n , vector<int> (m, 0));
Example 3: initialzing a 2d vector in cpp
vector<vector<int> > vec( n , vector<int> (m, 0));
Example 4: 2d vector
#include <bits/stdc++.h>
using namespace std;
int main()
{
int rows = 2;
int cols = 2;
int val = 1;
vector< vector<int> > v(rows, vector<int> (cols, val));
v[0][0] = 5;
v[1][1] = 4;
cout << v[0][0] << endl;
Example 5: initialising 2d vector
vector<vector<int> > vect{ { 1, 2, 3 },
{ 4, 5, 6 },
{ 7, 8, 9 } };