Is there any efficient code to generate numbers with n digits in their binary representation with exactly r bits set as one?
Also is this a good strategy to generate masks for finding NcR combinations of a set?
I've thought about generating all 2^n numbers and counting their bits but counting bits seems to be O(nlogn).
Well, if we are given a number with K bits set, how can we find the next largest number with K bits set? If we do this repeatedly we can generate all of them.
Generating the next one breaks down to a couple simple rules:
It turns out that there are little binary math tricks that implement all these rules easily. Here it is in python:
You can try it out here: https://ideone.com/ieWaUW
If you want to enumerate NcR combinations using bitmasks, then this is a good way to do it. If you would prefer to have, say, an array of indexes of the chosen items, then it would be better to use a different procedure. You can make 3 rules like the above for incrementing that array too.