vote up 6 vote down star
1

My question is simple: are std::vector elements guaranteed to be contiguous? In order word, can I use the pointer to the first element of a std::vector as a C-array?

If my memory serves me well, the C++ standard did not make such guarantee. However, the std::vector requirements were such that it was virtually impossible to meet them if the elements were not contiguous.

Can somebody clarify this?

Example:

std::vector<int> values;
// ... fill up values

if( !values.empty() )
{
    int *array = &values[0];
    for( int i = 0; i < values.size(); ++i )
    {
        int v = array[i];
        // do something with 'v'
    }
}
flag

64% accept rate
I know that you're in trouble if you mutate values inside that if block. I don't know the answer to your question, though, so I'm just leaving a comment. :) – Greg D May 11 at 17:40
@Greg: What trouble – can you elaborate a little? – Pukku May 11 at 17:43
I suppose he meant that pushing new values may trigger a "realloc" which would cause the array to become invalid. – Martin Cote May 11 at 17:52
Calls that mutate values, specifically that change its size (e.g., push_back()), may prompt a reallocation of the underlying vector that invalidates the pointer copied into array. It's the same principle behind using a vector::iterator instead of a pointer into the vector. :) – Greg D May 11 at 17:52
Ok. I was reading that if you mutate the values, i.e., assign to the elements. This should never cause any trouble, I believe. – Pukku May 11 at 17:55
show 1 more comment

7 Answers

vote up 15 vote down check

This was missed from C++98 standard proper but later added as part of a TR. The forthcoming C++0x standard will of course contain this as a requirement.

From n2798 (draft of C++0x):

23.2.6 Class template vector [vector]

1 A vector is a sequence container that supports random access iterators. In addition, it supports (amortized) constant time insert and erase operations at the end; insert and erase in the middle take linear time. Storage management is handled automatically, though hints can be given to improve efficiency. The elements of a vector are stored contiguously, meaning that if v is a vector where T is some type other than bool, then it obeys the identity &v[n] == &v[0] + n for all 0 <= n < v.size().

link|flag
2  
This is also stated in ISO 14882, 2nd Edition: Section 23.2.4 [lib.vector]: "The elements of a vector are stored contiguously, meaning that if v is a vector<T, Allocator> where T is some type other than bool, then it obeys the identity &v[n] == &v[0] + n for all 0 <= n < v.size()." – Mike Caron May 11 at 17:52
1  
so s,TR,TC, :) Actually C++03 is also called C++98-TC1 (technical corrigendum) from what i read – Johannes Schaub - litb May 11 at 18:02
@litb: Correct. I keep forgetting which is which. – dirkgently May 11 at 18:06
vote up 2 vote down

Yes, the elements of a std::vector are guaranteed to be contiguous.

link|flag
+1 vote from me. But, why the emoticon? I don't find it funny. – Milan Babuškov May 11 at 17:44
Right. I guess i use too much of those :) – Benoît May 11 at 18:23
vote up 4 vote down

The standard does in fact guarantee that a vector is continuous in memory and that &a[0] can be passed to a C function that expects an array.

The exception to this rule is vector<bool> which only uses one bit per bool thus although it does have continuous memory it can't be used as a bool* (this is widely considered to be a false optimization and a mistake).

BTW, why don't you use iterators? That's what they're for.

link|flag
> BTW, why don't you use iterators? That's what they're for. Maybe he read the Alexanrescu's new paper on the topic: boostcon.com/site-media/var/… – Nemanja Trifunovic May 11 at 18:06
Thanks for the link, I'll at it to my reading list (I try not to miss Alexandresu's articles) – Motti May 11 at 18:22
Mwahaha, everyone seems to be talking about that presentation these days. Look, the discussion is still hot about it: groups.google.com/group/comp.lang.c++.moderated/… – Johannes Schaub - litb May 11 at 18:25
vote up 1 vote down

cplusplus.com:

Vector containers are implemented as dynamic arrays; Just as regular arrays, vector containers have their elements stored in contiguous storage locations, which means that their elements can be accessed not only using iterators but also using offsets on regular pointers to elements.

link|flag
vote up 2 vote down

As other answers have pointed out, the contents of a vector is guaranteed to be continuous (excepting bool's weirding).

The comment that I wanted to add, is that if you do an insertion or a deletion on the vector, which could cause the vector to reallocate it's memory, then you will cause all of your saved pointers and iterators to be invalidated.

link|flag
The elements would still be stored in a contiguous memory block, it would just be in a different place. The question was specifically about contiguity. – Dima May 11 at 17:52
1  
But the existing pointers and iterators would be invalidated. – sharth May 11 at 18:49
Good point. You should put that into your answer to clarify what you mean. – Dima May 13 at 22:33
vote up 2 vote down

As other's have already said, vector internally uses a contiguous array of objects. Pointers into that array should be treated as invalid whenever any non-const member function is called IIRC.

However, there is an exception!!

vector<bool> has a specialised implementation designed to save space, so that each bool only uses one bit. The underlying array is not a contiguous array of bool and array arithmetic on vector<bool> doesn't work like vector<T> would.

(I suppose it's also possible that this may be true of any specialisation of vector, since we can always implement a new one. However, std::vector<bool> is the only, err, standard specialisation upon which simple pointer arithmetic won't work.)

link|flag

Your Answer

Get an OpenID
or

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