gpt4 book ai didi

c++ - 使用不带 std::copy 的插入迭代器

转载 作者:行者123 更新时间:2023-11-28 03:07:49 24 4
gpt4 key购买 nike

我有一个插入迭代器和一个指向要插入的元素的迭代器,但我不允许使用 std::copy

这是我在 c++ 引用页上找到的内容:

std::copy (bar.begin(),bar.end(),insert_it);

这也是我想做的但是我不能使用std::copy。还有别的办法吗?

最佳答案

auto first = bar.begin();
auto last = bar.end();
while (first!=last)
{
*insert_it = *first;
++insert_it;
++first;
}

关于c++ - 使用不带 std::copy 的插入迭代器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19266305/

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