作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
有时我想使用算法库中函数返回的迭代器。当我在修改函数和非修改函数之间切换时,就会出现我面临的问题。因为在非修改函数中我想使用 const_iterator
.作为玩具示例:
vector<int> v = { 1, 8, 7, 4, 3, 6, 2, 5 };
auto it = partition(begin(v), end(v), bind(greater<int>(), placeholders::_1, 3));
cout << (find(cbegin(v), it, 13) != cend(v)) << endl;
当我尝试编译这段代码时出现错误:
no matching function for call to
find(std::vector<int>::const_iterator, __gnu_cxx::__normal_iterator<int*, std::vector<int> >&, int)
我遇到的问题是我能找到的唯一转换过程可能很昂贵:auto cit = next(cbegin(v), distance(begin(v), it))
有什么方法可以使它正常工作吗?还是我坚持转换或只是使用非 const_iterator
是吗?
最佳答案
关于c++ - 有 make_const_iterator 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42283648/
有时我想使用算法库中函数返回的迭代器。当我在修改函数和非修改函数之间切换时,就会出现我面临的问题。因为在非修改函数中我想使用 const_iterator .作为玩具示例: vector v = {
我是一名优秀的程序员,十分优秀!