我的问题如下:我使用了一个迭代器,我想将每个元素与下一个元素进行比较。原型如下所示,如何增加迭代器才能进行比较?另外,我怎样才能为这种情况的发生设置适当的条件?我的意思是如何指向最后一个元素,而不是像 end() 函数一样指向最后一个元素:
std::vector<T>::const_iterator it;
std::vector<T>::const_iterator it2;
for (it = set.begin(), it != set.end(); it++)
{
// some things happen
if ( final == it )
{
if ( it != set.end()-1 ) // how to write properly condition?
{
it2 = it + 1; //how to assign the next here?
if (...)//some condition
{
if ( it->func1() - it2->func1()) < 20 ) //actual comparison of two consecutive element values
// do something
}
}
}
}