I'd like to compare two consecutive elements in a std::list while iterating through the list. What is the proper way to access element i+1 while my iterator is at element i? Thanks Cobe
|
|
|||
|
|
|
List is a Reversible Container, so its iterators are Bidirectional Iterators, which is a model of Forward Iterator, which I'm pretty sure means you can do this (or something equivalent, if you're allergic to breaking out of the middle of a loop etc.):
You couldn't do that with an Input Iterator, because with those the values only "exist" as long as you have an iterator at them. But you can with a Forward Iterator. |
|||
|
|
|
|
STL provide the adjancent_find() algorithm that can be used to find two consecutive equal elements. There is also a version with a custom predicate. These are the prototypes:
|
||
|
|
|
The simplest way would be to hold two iterators (since you'll have to stop at the penultimate one anyway).
Note that Chris Jester-Young points out that boost has
My feeling is that use of Edits:
|
||||
|
|
|
Boost has a utility called
Edit: But, if we step back to look at the forest, the real question is, why custom-write your |
||||||
|
