I'm writing a time-critical piece of code in C# that requires me to convert two unsigned integers that define an inclusive range into a bit field. Ex:
uint x1 = 3;
uint x2 = 9;
//defines the range [3-9]
// 98 7654 3
//must be converted to: 0000 0011 1111 1000
It may help to visualize the bits in reverse order
The maximum value for this range is a parameter given at run-time which we'll call max_val. Therefore, the bit field variable ought to be defined as a UInt32 array with size equal to max_val/32:
UInt32 MAX_DIV_32 = max_val / 32;
UInt32[] bitArray = new UInt32[MAX_DIV_32];
Given a range defined by the variables x1 and x2, what is the fastest way to perform this conversion?
UPDATE: Thanks for all the help, everyone. Danbruc gave an extremely elegant and efficient answer. I just have one more question:
I can replace the respective lines:
bitArray[startIndex] = UInt32.MaxValue << (x1 % 32);
bitArray[endIndex] &= UInt32.MaxValue >> (31 - (x2 % 32));
with
bitArray[startIndex] = MinTable[x1 % 32];
bitArray[endIndex] ^= MaxTable[x2 % 32];
where MinTable and MaxTable are arrays of UInt32 values as defined in my own answer below. In C# which method would be faster?
