xxxxxxxxxx
// Create a vector containing n row and m columns
vector<vector<int> > vec( n , vector<int> (m, 0));
xxxxxxxxxx
To be used in DP problems:
vector<vector<int>>dp; //global init
dp = vector<vector<int>>(n,vector<int>(m,0)); // local init for test cases
where,
n, m = dimensions of matrix
xxxxxxxxxx
auto M = 4; // num of rows
auto N = 3; // num of cols in each row
auto default_value = 1; // default value of all int elements
std::vector<std::vector<int>> matrix(M, std::vector<int>(N, default_value));
xxxxxxxxxx
vector<vector<int>> vec( n , vector<int> (m, 0));
where: n is number of ROWS,
m is number of COLUMNS
So result will be ( Let n = 2, m = 3 )
[[ 0, 0, 0],
[ 0, 0, 0]]
( 2 x 3 )
xxxxxxxxxx
// Initializing 2D vector "vect" with
// values
vector<vector<int> > vect{ { 1, 2, 3 },
{ 4, 5, 6 },
{ 7, 8, 9 } };