vote up 17 vote down star
5

So, I wrote a bunch of code that accesses elements in an stl vector by index[], but now I need to copy just a chunk of the vector. It looks like vector.insert(pos, first, last) is the function I want... except I only have first and last as ints. Is there any nice way I can get an iterator to these values?

flag

71% accept rate

4 Answers

vote up 34 vote down check

Try this:

vector<Type>::iterator nth = v.begin() + index;
link|flag
Oh! I didn't know you could do that. That's awesome, thanks :) – Mark Mar 22 at 18:46
Generally, you can use the same arithmetic with STL iterators than with pointers. They are designed to be exchangeable when using STL algorithms. – Vincent Robert Mar 22 at 21:07
vote up 30 vote down

way mentioned by @dirkgently ( v.begin() + index ) nice and fast for vectors

but std::advance( v.begin(), index ) most generic way and for random access iterators works constant time too.

EDIT
differences in usage:

std::vector<>::iterator it = ( v.begin() + index );

or

std::vector<>::iterator it = v.begin();
std::advance( it, index );

added after @litb notes.

link|flag
doesn't std::advance require a non-const iterator as the first argument? – goldPseudo Mar 22 at 19:10
according this - sgi.com/tech/stl/advance.html - no. – bb Mar 22 at 19:19
you can use std::advance with const and non-const iterators – bb Mar 22 at 19:23
bb, that page you linked says it requires a non-const reference. so better do vector<T>::iterator it = v.begin(); advance(it, index); instead – Johannes Schaub - litb Mar 22 at 19:54
where you see this requirement? – bb Mar 22 at 19:56
show 7 more comments
vote up 0 vote down

Actutally std::vector are meant to be used as C tab when needed. (C++ standard requests that for vector implementation , as far as I know - replacement for array in Wikipedia) For instance it is perfectly legal to do this folowing, according to me:

int main()
{

void foo(const char *);

sdt::vector<char> vec;
vec.push_back('h');
vec.push_back('e');
vec.push_back('l');
vec.push_back('l');
vec.push_back('o');
vec.push_back('/0');

foo(&vec[0]);
}

Of course, either foo must not copy the address passed as a parameter and store it somewhere, or you should ensure in your program to never push any new item in vec, or requesting to change its capacity. Or risk segmentation fault...

Therefore in your exemple it leads to

vector.insert(pos, &vec[first_index], &vec[last_index]);
link|flag
Makes me wonder why they decided to abstract away to iterators if they're just pointers... they're essentially "hiding" these capabilities. – Mark Mar 27 at 7:10
For consitency ? As it would allow you to easily remove vector instance for any other kind of container in your code so. – yves Baumes Mar 27 at 21:53
&vec[i] yields a pointer which is not necessarily compatible with vector<>::iterator. vec.begin()+i still has the benefit of being whatever iterator your library defines it to be -- including checked iterators in debug mode, for example. So, if you don't need a pointer (for I/O for example), you should always prefer iterators. – sellibitze Sep 27 at 8:01
vote up 1 vote down

Or you can use std::advance

vector<int>::iterator i = L.begin();
advance(i, 2);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.