/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

pdimov.github.io
| | emre.me
3.3 parsecs away

Travel
| | A hash table is an unordered collection of key-value pairs, where each key is unique. Also, they are the most commonly used data structure for implementing associative arrays1 (maps, dictionaries).
| | bannalia.blogspot.com
1.9 parsecs away

Travel
| | Introduction Several Boost authors have embarked on a project to improve the performance of Boost.Unordered 's implementation of std::unor...
| | bannalia.blogspot.com
3.3 parsecs away

Travel
| | Introduction The case for open addressing SIMD-accelerated lookup boost::unordered_flat_map data structure Rehashing Hash post-mixing Sta...
| | blog.demofox.org
11.9 parsecs away

Travel
| Hash tables are great in that you can hash a key and then use that hash as an index into an array to get the information associated with that key. That is very fast, so long as you use a fast hash function. The story doesn't end there though because hash functions can have collisions...