I was reading Joel's book where he was suggesting as interview question:
Write a program to reverse the "ON" bits in a given byte.
I only can think of a solution using C.
Asking here so you can show me how to do in a Non C way (if possible)
|
2
|
I was reading Joel's book where he was suggesting as interview question:
I only can think of a solution using C. Asking here so you can show me how to do in a Non C way (if possible)
|
||||
|
|
|
What specifically does that question mean? Does reverse mean setting 1's to 0's and vice versa? Or does it mean 00001100 --> 00110000 where you reverse their order in the byte? Or perhaps just reversing the part that is from the first 1 to the last 1? ie. 00110101 --> 00101011? Assuming it means reversing the bit order in the whole byte, here's an x86 assembler version:
not the most optimal solution, a table lookup is faster. |
|||
|
|
|
|
Reversing the order of bits in C#:
I'm sure there are more clever ways of doing it but in that precise case, the interview question is meant to determine if you know bitwise operations so I guess this solution would work. In an interview, the interviewer usually wants to know how you find a solution, what are you problem solving skills, if it's clean or if it's a hack. So don't come up with too much of a clever solution because that will probably mean you found it somewhere on the Internet beforehand. Don't try to fake that you don't know it neither and that you just come up with the answer because you are a genius, this is will be even worst if she figures out since you are basically lying. |
|||
|
|
|
|
The classic Bit Hacks page has several (really very clever) ways to do this, but it's all in C. Any language derived from C syntax (notably Java) will likely have similar methods. I'm sure we'll get some Haskell versions in this thread ;) |
||
|
|
|
|
That works if |
||
|
|
|
|
Good question. If reversing the "ON" bits means reversing only the bits that are "ON", then you will always get 0, no matter what the input is. If it means reversing all the bits, i.e. changing all 1s to 0s and all 0s to 1s, which is how I initially read it, then that's just a bitwise NOT, or complement. C-based languages have a complement operator,
|
||
|
|
|
|
If you're talking about switching 1's to 0's and 0's to 1's, using Ruby:
If you mean reverse the order:
If you mean counting the on bits, as mentioned by another user:
♥ Ruby |
|||
|
|
|
|
I'm probably misremembering, but I thought that Joel's question was about counting the "on" bits rather than reversing them. |
||
|
|
|
|
Since the question asked for a non-C way, here's a Scheme implementation, cheerfully plagiarised from SLIB:
Rewritten as C (for people unfamiliar with Scheme), it'd look something like this (with the understanding that in Scheme, numbers can be arbitrarily big):
|
||
|
|
|
|
And here's a version directly cut and pasted from OpenJDK, which is interesting because it involves no loop. On the other hand, unlike the Scheme version I posted, this version only works for 32-bit and 64-bit numbers. :-) 32-bit version:
64-bit version:
|
||
|
|
|
|
Here you go:
|
||
|
|
|
|
Here's the obligatory Haskell soln for complementing the bits, it uses the library function, complement:
|
|||
|
|
|
|
I'd modify palmsey's second example, eliminating a bug and eliminating the
The |
|||
|
|
|
|
If the question means to flip all the bits, and you aren't allowed to use C-like operators such as XOR and NOT, then this will work:
|
||
|
|
|
|
I claim trick question. :) Reversing all bits means a flip-flop, but only the bits that are on clearly means:
|
||
|
|
|
|
pseudo code..
|
||
|
|
|
|
Say you have the number 10101010. To change 1s to 0s (and vice versa) you just use XOR:
Doing it by hand is about as "Non C" as you'll get. However from the wording of the question it really sounds like it's only turning off "ON" bits... In which case the answer is zero (as has already been mentioned) (unless of course the question is actually asking to swap the order of the bits). |
||
|
|