here is my problem. I have two short ints in C++:
short a;
short b;
Their bit representation can be put in the form
a = a0 a1 a2 a3 a4 ... a15
b = b0 b1 b2 b3 b4 ... b15
Where a0, b0, a1, b1 and so on represent the single bits for the two short ints. Now, I would like to know if there is an efficient way to produce an int in the form:
a0 b0 a1 b1 a2 b2 ... a15 b15
I know I could pedantically use a loop and manually bitmasking every single bit, but I wanted to know if there is a more efficient way to do it.
Thank you very much
Here is one way, with a lookup table:
The lookup table converts the 8-bit binary number
abcdefgh
to0a0b0c0d0e0f0g0h
. The code works for 16-bit inputs (and 32-bit output), but can be easily generalised for wider inputs.The code is taken from Bit Twiddling Hacks. See the link for two other methods.
For background, this interleaving of bits is called the Morton code and is a way to combine multiple dimensions into one while preserving locality of points.