So for e.g. 0110 has bits 1 and 2 set, 1000 has bit 3 set 1111 has bits 0,1,2,3 set
|
|
Two steps: Step 1: Extract each set bit with Step 2: Subtract 1 and count bits set. MSN |
||
|
|
|
|
If it was .NET and you'd have to use it a lot I would like a nice fluent interface. I would create the following class (not totally happy with the name BitTools).
And you could use it the following ways:
For each (U)Int size you could make another Int*Bits enum and the correct overloads of IsSet and IsBitSet. EDIT: I misread, you're talking about unsigned ints, but it's the same in this case. |
|||
|
|
|
|
You can take the hybrid approach of iterating through the bytes of the int, use a lookup table to determine the indexes of the set bits in each byte (broken up into nibbles). Then you would need to add an offset to the indexes to reflect its position in the integer. i.e. Suppose you started with the MSB of a 32 bit int. The upper nibble indexes I will call upper_idxs, and the lower nibble indexes I will call lower_idxs. Then you need to add 24 to each element of lower_idxs, and add 28 to each element of upper_idxs. The next byte would be similarly processed, except the offsets would be 16 and 20 respectively, since that byte is 8 bits "down". To me this approach seems reasonable, but I would be happy to proven wrong :-) Cheers, Steve |
||
|
|
|
|
Best reference on the Internet for all those bit hacks - bit twiddling hacks |
||
|
|
|
|
@Allan Wind... The extra bit shifts are not needed. It is more efficient to not do a bit shift, as comparing the least significant bit is just as efficient as comparing the 2nd least significant bit, and so on. Doing a bit shift as well is just doubling the bit operations needed.
All operations on an x86 system anyway are done with 32-bit registers, so a single bit compare would be just as efficient as a 32-bit compare. Not to mention the overhead of having the loop itself. The problem can be done in a constant number of lines of code and whether the code is run on an x86 or an x64, the way I describe is more efficient. |
|||
|
|
|
|
If there are really only 4 bits, then the fastest method would certainly involve a lookup table. There are only 16 different possibilities after all. |
||
|
|
|
Depends on what you mean by fastest. If you mean "simple to code", in .NET you can use the BitArray class and refer to each bit as a boolean true/false. |
||
|
|
|
|
|
||
|
|
|
|
I would shift it down and test the least significant bit in a loop. It might be faster testing with 32 bit masks (or whatever length your unsigned int is). /Allan |
||||||
|
