Assuming that we have a T myarray[100] with T = int, unsigned int, long long int or unsigned long long int, what is the fastest way to reset all its content to zero (not only for initialization but to reset the content several times in my program)? Maybe with memset?

Same question for a dynamic array like T *myarray = new T[100].

link|improve this question

52% accept rate
No C++ in sight - removing tag. – Bo Persson Feb 5 at 9:06
@BoPersson: well, new is C++... – Matteo Italia Feb 5 at 20:06
@Matteo - well, yeah. Didn't affect the answers much (until just now :-). – Bo Persson Feb 5 at 20:12
1  
@BoPersson: I felt bad talking only about memset when C++ is somehow involved... :) – Matteo Italia Feb 5 at 20:15
feedback

3 Answers

up vote 15 down vote accepted

memset is probably the fastest standard way, since it's usually a routine written directly in assembly and optimized by hand.

memset(myarray, 0, sizeof(myarray)); // for automatically-allocated arrays
memset(myarray, 0, N*sizeof(*myarray)); // for heap-allocated arrays, where N is the number of elements

---edit---

By the way, in C++ the idiomatic way would be to use std::fill:

std::fill(myarray, myarray+N, 0);

which may be optimized automatically into a memset; I'm quite sure that it will work as fast as memset for ints, while it may perform slightly worse for smaller types if the optimizer isn't smart enough. Still, when in doubt, profile.

link|improve this answer
feedback

From memset():

memset(myarray, 0, sizeof(myarray));

You can use sizeof(myarray) if the size of myarray is known at compile-time. Otherwise, if you are using a dynamically-sized array, such as obtained via malloc or new, you will need to keep track of the length.

link|improve this answer
1  
sizeof will work even if the size of the array is not known at compile-time. (of course, only when it's array) – asaelr Feb 5 at 2:28
feedback

For static declaration I think you could use:

T myarray[100] = {0};

For dynamic declartion I suggest the same way: memset.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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