Possible Duplicate:
std::vector is so much slower than plain arrays?
Looks like vector is allocated on heap instead of stack.
So should I consider using array to replace vector (if possible) when performance becomes a serious issue?
Looks like vector is allocated on heap instead of stack. So should I consider using array to replace vector (if possible) when performance becomes a serious issue? |
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
No. (to satisfy the comment pedants, no, you should not "prefer" arrays over vectors for performance, but sure, you should "consider" using arrays to replace vectors, for the specific cases outlined below) When performance becomes a serious issue, you should base your optimizations on actual data, not second-hand stories and hearsay and superstition. If replacing your vector with an array gives you a measurable (and necessary) speedup, then you should do it. But note that you can only use a stack-allocated array if:
In most cases, these conditions won't be true, and then the array would have to be heap-allocated anyway, and then you just lost the one advantage arrays had. But if all those conditions are true and you can see that this heap allocation is actually hurting your performance measurably, then yes, switching to an array (or a Otherwise? No... |
|||||||||||||||||
|
|
If the number of elements is known in advance, in coding-time, then yes, you should prefer using array. C++11 provides this:
But avoid using this:
In C++03, you should still prefer
In most cases, when vector appears to be slow, it is because programmers don't take advantage of |
|||||||||||||||
|
|
Unless you're running on an exceptional system (i.e. one with a slow memory allocator) it is unlikely to make a significant difference. I'd suggest you prefer using std::vector instead, for its better type safety than plain arrays. |
|||
|
|
std::vector, this will give you performance close (within about 10% for use in a tight inner loop e.g.) tostd::arraybut it retains the flexibility of vectors by going to the heap if the stack buffer becomes full. – rhalbersma Jul 26 '12 at 9:17