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++,复制集到向量


基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 设计字符串本地化的最佳方法 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01