what is a good way to select a random element from a map? C++. It is my understanding that maps don't have random access iterators. The key is a long long and the map is sparsely populated.
feedback
|
| |||||||||
feedback
|
|
I like James' answer if the map is small or if you don't need a random value very often. If it is large and you do this often enough to make speed important you might be able to keep a separate vector of key values to select a random value from.
Of course if the map is really huge you might not be able to store a copy of all the keys like this. If you can afford it though you get the advantage of lookups in logarithmic time. | |||||||
feedback
|
|
Maybe draw up a random key, then use lower_bound to find the closest key actually contained. | |||||
feedback
|
|
If your map is static, then instead of a map, use a vector to store your key/value pairs in key order, binary search to look up values in log(n) time, and the vector index to get random pairs in constant time. You can wrap the vector/binary search to look like a map with a random access feature. | |||
|
feedback
|
|
Maybe you should consider Boost.MultiIndex, although note that it's a little too heavy-weighted. | |||
|
feedback
|
|
Continuing ryan_s theme of preconstructed maps and fast random lookup: instead of vector we can use a parallel map of iterators, which should speed up random lookup a bit.
| |||
|
feedback
|
|
Here is the case when all map items must be access in random order.
In pseudo-code (It closely reflects the following C++ implementation):
In C++:
| ||||
|
feedback
|