how to create vector of vector in c++ code example
Example 1: initialize vector of vector c++
#include <iostream>
#include <vector>
#define M 3
#define N 4
int main()
{
int default_value = 1;
std::vector<int> v(N, default_value);
std::vector<std::vector<int>> matrix(M, v);
return 0;
}
Example 2: how to create a vector in c++
#include <vector>
using namespace std;
int main()
{
vector<int> vect;
vect.push_back(10);
for (int x : vect)
cout << x << " ";
return 0;
}
Example 3: how to make a vector in c++
#include <vector>
using namespace std;
int main(){
vector<int> v;
return 0;
}
Example 4: create vectors of vectors c++
typedef std::vector<std::vector<double> > Matrix;
Matrix matrix = { {0.1,1.1,.2},
{.4,.5,.6},
{.8,.9,.10}
};
int rows = 3;
int cols = 3;
Matrix m3(rows, std::vector<double>(cols) );