gpt4 book ai didi

c++ - 如何将数组推送到标准 vector 中

转载 作者:太空宇宙 更新时间:2023-11-04 15:34:45 26 4
gpt4 key购买 nike

我正在用 OpenGL 做一些高度图。每个顶点的唯一 z 存储在一个文件中,我还必须将 x 和 y 值存储在一个 vector 中:

#include <vector>
#include <fstream>
#include <sstream>

int main(void)
{
std::vector<float> _data;
float constexpr triangle_side(1.118033989);
std::ifstream ifs("mymap");
std::string line;

if (not ifs.is_open())
return -1;
for (float y(0) ; std::getline(ifs, line) ; --y)
{
std::istringstream iss(line);

for (float x(static_cast<int>(y) % 2 ? 0 : triangle_side / 2), z ; iss >> z ; x += triangle_side)
_data.push_back({x, y, z}); // does not compile
}
ifs.close();
return 0;
}

在我看来,这样做是一件坏事:_data.push_back(x); _data.push_back(y); _data.push_back(z); 因为 vector 可能会在每次调用时重新分配数组。

最好的方法是什么?

如果我这样做:

std::vector< std::array<float, 3> > _data;
//...
_data.push_back({x, y, z});

是否保证所有值都是连续的?

最佳答案

std::array<float, 3>在内存中的布局类似于 C 数组,因此 float s 将是连续的。您也可以只使用 insert :

_data.insert(_data.cend(), {x, y, z});

关于c++ - 如何将数组推送到标准 vector 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37206756/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com