vote up 3 vote down star

Is there any equivalent function of memset for vectors in C++. (Not clear() or erase() method, I want to retain the size of vector, I just want to initialize all the values)

flag

69% accept rate

3 Answers

vote up 19 vote down check

Use std::fill():

std::fill(myVector.begin(), myVector.end(), 0);
link|flag
vote up 0 vote down

Another way, I think I saw it first in Meyers book:

// Swaps with a temporary. vec.swap( std::vector(vec.size(), 0) );

It's only drawback is that it makes a copy.

link|flag
vote up 7 vote down

If your vector contains POD types, it is safe to use memset on it - the storage of a vector is guaranteed to be contiguous.

memset(&vec[0], 0, sizeof(vec[0]) * vec.size());

Edit: Sorry to throw an undefined term at you - POD stands for Plain Old Data, i.e. the types that were available in C. See this Wikipedia link: http://en.wikipedia.org/wiki/Plain%5Fold%5Fdata%5Fstructures

link|flag
1  
"Plain old data" - integers, structs (that contain only PODs), chars... – LiraNuna Nov 3 at 3:20
1  
Really? I thought it was common knowledge that a vector's memory had to be contiguous. Is that just a rumor? – GMan Nov 3 at 3:20
1  
@GMan: Yep. Take a look at section 23.2.4 of the C++03 draft standard at ftp.research.att.com/dist/c++std/… . Nowhere does it mention contiguous storage. – Adam Rosenfield Nov 3 at 3:24
4  
In my copy of the ISO03 standard, on page 489 [23.2.4], it says: "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()." I think that means contiguous, right? – GMan Nov 3 at 3:40
2  
@Adam Rosenfield: you may be thinking of strings being contiguous or not. As for vectors, "contiguity is in fact part of the vector abstraction. It’s so important, in fact, that when it was discovered that the C++98 standard didn’t completely guarantee contiguity, the C++03 standard was amended to explicitly add the guarantee" from herbsutter.wordpress.com/2008/04/… – Michael Burr Nov 3 at 3:48
show 10 more comments

Your Answer

Get an OpenID
or

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