我想知道是否有某种迭代器可以迭代std :: string中的值,从到头开始时从头开始。换句话说,这个对象将无限期地迭代,一遍又一遍地吐出相同的值序列。
谢谢!
答案 0 :(得分:5)
生成器功能可能就是这样。 Boost Iterator具有迭代器适配器:
示例:http://coliru.stacked-crooked.com/a/267279405be9289d
#include <iostream>
#include <functional>
#include <algorithm>
#include <iterator>
#include <boost/generator_iterator.hpp>
int main()
{
const std::string data = "hello";
auto curr = data.end();
std::function<char()> gen = [curr,data]() mutable -> char
{
if (curr==data.end())
curr = data.begin();
return *curr++;
};
auto it = boost::make_generator_iterator(gen);
std::copy_n(it, 35, std::ostream_iterator<char>(std::cout, ";"));
}