how to make a vector of vectors in c++ code example
Example 1: 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 2: how to create a vector in c++
#include <vector>
std::vector<type> name;
std::vector<double> lol = {66.666, -420.69};
Example 3: get values from a vector of vectors c++
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<vector<int> > buff;
for(int i = 0; i < 10; i++)
{
vector<int> temp;
for(int j = 0; j < 10; j++)
temp.push_back(i);
buff.push_back(temp);
}
for(int i = 0; i < buff.size(); ++i)
{
for(int j = 0; j < buff[i].size(); ++j)
cout << buff[i][j];
cout << endl;
}
return 0;
}
Example 4: how to make a vector in c++
#include <vector>
using namespace std;
int main(){
vector<int> v;
return 0;
}
Example 5: 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) );
Example 6: how to create a vector from elements of an existing vector in cpp
vector<int> vect1{1, 2, 3, 4};
vector<int> vect2;
vect2.assign(vect1.begin(), vect1.end());