Search Results

2
votes

What’s the best hashing algorithm to use on a stl string when using hash_map?

Boost has an boost::hash library which can provides some basic hash functions for most common types. …
5
votes

When to build your own buffer system for I/O (C++)?

Maybe you should look into memory mapped files. Check them in this library : Boost.Interprocess …