show/hide this revision's text 2 look up

Speed for how many items?

Changing items?

Compile time or execution time?

With what space constraints?

A known strategy is to take a few ones together and write out all combinations and their results: 0000 -> 0001 -> 4 0010 -> 3 0011 -> 3,4 0100 -> 2 0101 -> 2,4 0110 -> 2,3 ...

Why do you want to convert from this binary representation to select a random one bit? That is unlikely to help with performance. Better group them by 8 bits, use a table telling you how many 1s are in the group, and repeat 5 times. then you know how many ones there are. do a random over that and then look up the selected one.

show/hide this revision's text 1

Speed for how many items?

Changing items?

Compile time or execution time?

With what space constraints?

A known strategy is to take a few ones together and write out all combinations and their results: 0000 -> 0001 -> 4 0010 -> 3 0011 -> 3,4 0100 -> 2 0101 -> 2,4 0110 -> 2,3 ...