Best in PHP,
for example,
11011111 ==> 11111011
|
|
Check the section on reversing bit sequences in Bit Twiddling Hacks. Should be easy to adapt one of the techniques into PHP. While probably not practical for PHP, there's a particularly fascinating one using 3 64bit operations:
|
|||||||
|
|
The straight forward approach is to perform 8 masks, 8 rotates, and 7 additions:
|
|||||||||||||||||
|
|
If you have already the bits in the form of a string, use strrev. If not, convert first the byte to its binary representation by using decbin, then reverse using strrev, then go back to byte (if necessary) by using bindec. |
|||||||||
|
|
The quickest way, but also the one requiring more space is a lookup, whereby each possible value of a byte (256 if you go for the whole range), is associated with its "reversed" equivalent. If you only have a few such bytes to handle, bit-wise operators will do but that will be slower, maybe something like:
|
|||||
|
|
Try to get this book, there is whole chapter about bits reversion: Hacker's Delight. But please check content first if this suits you. |
|||
|
|
|
This is O(n) with the bit length. Just think of the input as a stack and write to the output stack. My attempt at writing this in PHP.
|
|||
|
|
|
Make a print out of the bits onto a piece of paper. Hold the piece of paper up to a mirror and then type them in in reverse order, using the mirror reflection. Simple, really. |
|||||||||
|
|
I disagree with using a look up table as (for larger integers) the amount of time necessary to load it into memory trumps processing performance. I also use a bitwise masking approach for a O(logn) solution, which looks like:
The advantage of this approach is it handles the size of your integer as an argument in php this might look like:
unless I screwed up my php somewhere :( |
|||
|