Abd*_*rad 3 c++ size vector stdvector
我有以下脚本在特定基础中创建所有可能的点:
int main(){
int base;
cout << "Enter Base: ";
cin >> base;
int dimension;
cout << "Enter Dimension: ";
cin >> dimension;
//This creates all possible numbers
vector<double> dist;
dist.reserve(base);
for(int k=0; k<base; k++){
dist[k] = (-1.0+k*2.0/(base-1.0));
}
vector< vector<double> > points;
int perms = 1;
for(int i=0; i<dimension; i++){
perms *= base;
} // base^dimension
points.reserve(perms);
vector<double> stand;
stand.reserve(dimension);
// Defined later
getPermutations(dist, base, stand, dimension, 0, points);
for(int i=0; i<points.size(); i++){ //DOESN'T DO ANYTHING BECAUSE SIZE IS 0
cout << '(';
for(int j=0; j<points[i].size(); j++){
cout << points[i][j] << ',';
}
cout << ')' << endl;
}
return 0;
}
Run Code Online (Sandbox Code Playgroud)
它不会做任何事情,因为当我使用push_back()函数而不是索引时,size函数只会增加.我必须使用索引,因为下面的排列函数:
void getPermutations(vector<double>& arr, int size,
vector<double>& data,int dimension,
int index, vector< vector<double> >& combs){
int i;
//stop recursion condition
if(index == dimension){
combs.push_back(data);
}
else{
for(i = 0; i < size; i++){
data.at(index) = arr.at(i);
getPermutations(arr, size,data,
dimension,index+1, combs);
}
}
}
Run Code Online (Sandbox Code Playgroud)
我不明白为什么矢量大小为零并且错误不断弹出说:
terminate called after throwing an instance of 'std::out_of_range'
what(): vector::_M_range_check: __n (which is 0) >= this->size() (which is 0)
Run Code Online (Sandbox Code Playgroud)
该std::vector::reserve功能不符合您的想法.它不会改变大小,只改变容量(为向量分配的内存量).
这意味着当你创建例如dist向量并且直接在调用之后reserve你有一个循环并且做
dist[k] = (-1.0+k*2.0/(base-1.0));
Run Code Online (Sandbox Code Playgroud)
你实际上索引越界并且有未定义的行为.
解决方案是实际设置大小.通过std::vector::resize,或者只是在创建向量时设置大小:
std::vector<double> dist(base); // Creates vector with a specific size
Run Code Online (Sandbox Code Playgroud)
你的所有向量都有同样的问题,所有这些都需要相应地改变.