Compare vectorlt;Tgt;::iterator with vectorlt;Tgt;::reverse_iterator(比较向量lt;Tgt;::iterator 和向量lt;Tgt;::reverse_iterator)
问题描述
我正在做一个练习,我有一个向量,我正在编写自己的反向算法,方法是使用反向和正常(正向)迭代器来反转向量的内容.但是,我无法比较迭代器.
I am working on an exercise where I have a vector and I am writing my own reverse algorithm by using a reverse and a normal (forward) iterator to reverse the content of the vector. However, I am not able to compare the iterators.
int vals[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
vector<int> numbers(vals, vals + 10);
vector<int>::iterator start = numbers.begin();
vector<int>::reverse_iterator end = numbers.rend();
我有一个先前的算法,用于通过使用两个迭代器来反转向量,但是在这个任务中,我无法使用它们之间的 != 运算符来比较它们.我的猜测是获取向量中的底层指针或索引,但我如何获取指针/索引?
I have a previous algorithm for reversing the vector by using two iterators, however in this task I am not able to compare them using the != operator between them. My guess would be to get the underlying pointers or indexes in the vector with each other but how do I get the pointers/index?
推荐答案
使用 base()
: it == rit.base() - 1
.
这篇关于比较向量<T>::iterator 和向量<T>::reverse_iterator的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:比较向量<T>::iterator 和向量<T>::reverse_iterator
基础教程推荐
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04