http://www.perlmonks.org?node_id=579130

Limbic~Region has asked for the wisdom of the Perl Monks concerning the following question:

All,
The formula to determine the number of combinations (C) from a group of items (N) when choosing a fixed number of items at a time (K) is C = N! / K! * (N - K)!

So if I had a list of 5 items and I chose 2 at a time, I would have 10 combinations 120 / 2 * 6

ABCDE = AB, AC, AD, AE, BC, BD, BE, CD, CE, DE

Assuming:

It should be possible to use a bitstring the size of C to represent each combination. My question is what algorithm could I use to convert say 'CD' to 8 (or 7 if 0 based) and flip that bit. The converse algorithm (taking the bit and obtaining the combination) is not needed but feel free to have fun.

Cheers - L~R