While there are multiple ways to reverse bit order in a byte, I'm curious as to what is the "simplest" for a developer to implement. And by reversing I mean:
1110 -> 0111
0010 -> 0100
This is similar to, but not a duplicate of this PHP question.
|
While there are multiple ways to reverse bit order in a byte, I'm curious as to what is the "simplest" for a developer to implement. And by reversing I mean:
This is similar to, but not a duplicate of this PHP question. |
|||||||||||
|
|
If you are talking about a single byte, a table-lookup is probably the best bet, unless for some reason you don't have 256 bytes available. |
|||||||||||||||||||||
|
|
This should work:
First the left four bits are swapped with the right four bits. Then all adjacent pairs are swapped and then all adjacent single bits. This results in a reversed order. |
|||||||||||||||||||
|
|
I think a look up table has to be one of the simplest methods. However, you don't need a full lookup table.
This isn't quite a fast as a full lookup table but it's simpler to code and verify. |
|||||||||||||||
|
|
See the bit twiddling hacks for many solutions. Copypasting from there is obviously simple to implement. =) |
|||||||||
|
EDIT: Converted it to a template with the optional bitcount |
||||
|
Since nobody posted a complete table lookup solution, here is mine:
|
|||
|
|
Although probably not portable, I would use assembly language. The algorithm is:
The high level language code for this is much more complicated, because C and C++ do not support rotating to carry and rotating from carry. The carry flag has to modeled. Edit: Assembly language for example
|
|||||
|
|
You may be interested in It should be the simplest as requested.
Other options may be faster. EDIT: I owe you a solution using
The second example requires c++0x extension (to initialize the array with HTH |
|||||||||
|
|
Table lookup or
edit Look here for other solutions that might work better for you |
|||
|
|
|
The simplest way is probably to iterate over the bit positions in a loop:
|
|||
|
|
|
a slower but simpler implementation:
|
|||
|
|
|
Two lines.
"original" is the byte you want to reverse. "reversed" is the result, initialized to 0. |
||||
|
|
|
Before implementing any algorithmic solution, check the assembly language for whatever CPU architecture you are using. Your architecture may include instructions which handle bitwise manipulations like this (and what could be simpler than a single assembly instruction?). If such an instruction is not available, then I would suggest going with the lookup table route. You can write a script/program to generate the table for you, and the lookup operations would be faster than any of the bit-reversing algorithms here (at the cost of having to store the lookup table somewhere). |
|||
|
|
|
How about just XOR the byte with 0xFF.
|
|||
|
|