b 13{'a': 49801, 'c': 33548, 'b': 16650}{'a': 0.5, 'c': 0.33333333333333331, 'b': 0.16666666666666666}Edit: Miles pointed out a 50b 16.67 (or 1/6)c 33.33 (or 1/3)serious error in my original implementation, which has since been corrected. Sorry about that!
|
5 | fixed bug in code | ||
|
|
||||
|
4 | fixed a bug in code, tried to improve explanation | ||
|
Do you always know the total number of values in the dictionary? If so, this might be easy to do with the following algorithm, which can be used whenever you want to make a probabilistic selection of some items from an ordered list:
This algorithm has the advantage of not having to generate any new lists, which is good for situations in which you have very large dictionaries or a important if your dictionary is largenumber of values associated with one or more keys. You're Your program is only paying for the loop over K keys to calculate the total, a another loop over the keys which will on average end halfway through, and whatever it costs to generate a random number between 0 and 1. Generating such a random number is a very common application in programming, so most languages have a fast implementation of such a function. In Python the random number generator a C implementation of the Mersenne Twister algorithm, which should be very fastand also threadsafe. Additionally, the documentation claims that this implementation is thread-safe. Here's the code. I'm sure that you can clean it up if you'd like to use more Pythonic features:
After running this 100 times, I get these valuesselect keys this number of times:
Those are fairly close to your expected values of:
|
||||
|
3 | added more information about why this is a good idea. | ||
|
Do you always know the total number of values in the dictionary? If so, this might be easy to do with the following algorithm:
This algorithm has the advantage of not having to generate any new lists, which is good for situations in which you have very large dictionaries or a large number of values associated with one or more keys. You're only paying for the loop over K keys to calculate the total, a another loop over the keys which will on average end halfway through, and whatever it costs to generate a random number between 0 and 1. In Python the random number generator a C implementation of the Mersenne Twister algorithm, which should be very fast and also threadsafe. Here's the code. I'm sure that you can clean it up if you'd like to use more Pythonic features:
After running this 100 times, I get these values:
Those are fairly close to your expected values of:
|
||||
|
2 | edited code and grammar | ||
|
1 |
|
||
