Say I have an std::list<int> lst and some std::list<int>::iterator it for iterating through the list. And depended to value of the it I want to use it + 1 or it - 1 in my code. Is there some good way to do that like next(), prev() (I couldn't find such things in stl documentation)? Or should I copy the it each time and increment(decrement) the copy?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
| show 1 more comment |
|
Copying and incrementing/decrementing the copy is the only way it can be done. You can write wrapper functions to hide it (and as mentioned in answers, C++11 has std::prev/std::next which do just that (and Boost defines similar functions). But they are wrappers around this "copy and increment" operation, so you don't have to worry that you're doing it "wrong". |
|||
|
|
|
Yes, since C++11 there are the two methods you are looking for called Example from cppreference.com
Output:
|
|||||
|
|
A simple precanned solution are |
|||||
|
it++, it translates asit = it + 1, meaning technically the iterator object could just as well be a new object everytime. Not sure what you're asking. – Neil Apr 13 '12 at 8:04std::prev/std::nextwhich do just that. But they are wrappers around this "copy and increment" operation – jalf Apr 13 '12 at 8:08"it + 1"and"it - 1"to the quotes because they are not valid operations of the bidirectional iterator. Do you care if I add them back? – Mihran Hovsepyan Apr 13 '12 at 8:35