how to declare the size of 2d vector in c++ code example
Example 1: 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)); /*creates 2d vector “v[rows][cols]” and initializes all elements to “val == 1” (default value is 0)*/
v[0][0] = 5;
v[1][1] = 4;
cout << v[0][0] << endl; //Output: 5cout << v[1][0] << endl; //Output: 1return 0;}
Example 2: how to get size of 2d vector in c++
myVector[
Vector[0, 4, 2, 5],
Vector[1, 4, 2]
];
/*When you call for myVector[1].size() it would return 3 and [0] would return 4.
For the amount of rows (int vectors) in the 2d vector, you can just use myVector.size()
You can run this to see it in actions*/