0
votes
What’s the best hashing algorithm to use on a stl string when using hash_map?
If you are hashing a fixed set of words, the best hash function is often a perfect hash function. However, they generally requ …
10
votes
Why use c strings in c++?
A couple more memory control notes:
C strings are POD types, so they can be allocated in your application's read-only data segment. If you declare and define std::string consta …
0
votes
how get a vector<Derived*> into a function that expects a vector<Base*> as argument
If std::vector supported what you're asking for, then it would be possible to defeat the C++ type system without using any casts (edit: ChrisN's link to the C++ FAQ Lite talks about th …
0
votes
Returning an ‘any kind of input iterator’ instead of a vector::iterator or a list::iterator
To hide the fact that your iterators are based on std::vector<Arc*>::iterator you need an iterator class that delegates to std::vector<Arc*>::iterator. s …
1
vote
What is the most efficient way to (re)initialise a vector to a certain length with initial values
Neither of the code snippets that you posted do any memory deallocation, so they are roughly equal.
The swap trick that everyone else keeps posting will take longer to execute, because it w …
0
votes
Simplest, safest way of holding a bunch of const char* in a set?
Others have already posted plenty of solutions showing how to do lexical comparisons with const char*, so I won't bother.
Please do not suggest creating std::str …
10
votes
Best way to compare elements in a vector and return a object
The STL has four reusable binary search algorithms in the <algorithm> header: lower_bound, …
2
votes
Erasing items from an STL list
STL lists have an interesting feature: the splice() method lets you destructively move elements from one list to another.
splice() operates in co …
5
votes
std::vector on VisualStudio2008 appears to be suboptimally implemented - too many copy constructor calls
Don't forget to count the copy constructor calls needed to push_back a temporary C object into the vector. Each iteration will call C's copy constructor at le …
3
votes
Convert iterator to pointer?
That seems not possible in my situation, since the function I mentioned is the find function of unordered_set<std::vector*>.
Are you using c …
3
votes
std::list, std::vector methods and malloc()
It sounds like you want to preallocate memory in your initialization code, so that your interrupt handler can avoid heap allocations. I'll assume that the elements you're storing in these container …
