C++, copy set to vector(C++,复制集到向量)
问题描述
我需要将 std::set 复制到 std::vector:
I need to copy std::set to std::vector:
std::set <double> input;
input.insert(5);
input.insert(6);
std::vector <double> output;
std::copy(input.begin(), input.end(), output.begin()); //Error: Vector iterator not dereferencable
问题出在哪里?
推荐答案
你需要使用一个back_inserter:
std::copy(input.begin(), input.end(), std::back_inserter(output));
std::copy 不会将元素添加到您要插入的容器中:它不能;它只有一个进入容器的迭代器.因此,如果将输出迭代器直接传递给 std::copy,则必须确保它指向的范围至少足以容纳输入范围.
std::copy doesn't add elements to the container into which you are inserting: it can't; it only has an iterator into the container. Because of this, if you pass an output iterator directly to std::copy, you must make sure it points to a range that is at least large enough to hold the input range.
std::back_inserter 创建一个输出迭代器,该迭代器在容器上为每个元素调用 push_back,因此每个元素都插入到容器中.或者,您可以在 std::vector 中创建足够数量的元素来保存被复制的范围:
std::back_inserter creates an output iterator that calls push_back on a container for each element, so each element is inserted into the container. Alternatively, you could have created a sufficient number of elements in the std::vector to hold the range being copied:
std::vector<double> output(input.size());
std::copy(input.begin(), input.end(), output.begin());
或者,您可以使用 std::vector 范围构造函数:
Or, you could use the std::vector range constructor:
std::vector<double> output(input.begin(), input.end());
这篇关于C++,复制集到向量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++,复制集到向量
基础教程推荐
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
