矢量向量的初始化?

时间:2010-06-17 11:33:44

标签: c++ stl vector matrix

有没有办法在初始化矩阵时以相同,快速的方式初始化矢量矢量?

typedef int type;

type matrix[2][2]=
{
{1,0},{0,1}
};

vector<vector<type> > vectorMatrix;  //???

4 个答案:

答案 0 :(得分:7)

对于单个矢量,您可以使用以下内容:

typedef int type;
type elements[] = {0,1,2,3,4,5,6,7,8,9};
vector<int> vec(elements, elements + sizeof(elements) / sizeof(type) );

基于此,您可以使用以下内容:

type matrix[2][2]=
{
   {1,0},{0,1}
};

vector<int> row_0_vec(matrix[0], matrix[0] + sizeof(matrix[0]) / sizeof(type) );

vector<int> row_1_vec(matrix[1], matrix[1] + sizeof(matrix[1]) / sizeof(type) );

vector<vector<type> > vectorMatrix;
vectorMatrix.push_back(row_0_vec);
vectorMatrix.push_back(row_1_vec);

c++0x中,您可以使用与数组相同的方式初始化标准容器。

答案 1 :(得分:4)

std::vector<std::vector<int>> vector_of_vectors;

然后如果要添加,可以使用此过程:

vector_of_vectors.resize(#rows); //just changed the number of rows in the vector
vector_of_vectors[row#].push_back(someInt); //this adds a column

或者你可以这样做:

std::vector<int> myRow;
myRow.push_back(someInt);
vector_of_vectors.push_back(myRow);

因此,在您的情况下,您应该能够说:

vector_of_vectors.resize(2);
vector_of_vectors[0].resize(2);
vector_of_vectors[1].resize(2);
for(int i=0; i < 2; i++)
 for(int j=0; j < 2; j++)
   vector_of_vectors[i][j] = yourInt;

答案 2 :(得分:3)

在C ++ 0x中,我认为您可以使用与matrix相同的语法。

在C ++ 03中,你必须编写一些繁琐的代码来填充它。 Boost.Assign可能会使用类似以下未经测试的代码进行一些简化:

#include <boost/assign/std/vector.hpp>

vector<vector<type> > v;
v += list_of(1)(0), list_of(0)(1);

甚至

vector<vector<type> > v = list_of(list_of(1)(0))(list_of(0)(1));

答案 3 :(得分:2)

如果矩阵完全填满 -

vector< vector<int> > TwoDVec(ROWS, vector<int>(COLS));
//Returns a matrix of dimensions ROWS*COLS with all elements as 0
//Initialize as -
TwoDVec[0][0] = 0;
TwoDVec[0][1] = 1;
..
.

更新:我发现有更好的方式here

否则,如果每行中有可变数量的元素(不是矩阵) -

vector< vector<int> > TwoDVec(ROWS);
for(int i=0; i<ROWS; i++){
    while(there_are_elements_in_row[i]){           //pseudocode
        TwoDVec[i].push_back(element);
    }
}