I am lookin for a method to have number of 1's in 32 bit number without using a loop in between. can any body help me and provide me the code or algorithm to do so. Thanks in advance.
|
|
|||||
|
|
|
Short, obscenely optimized answer (in C):
To see why this magic works, see The Quest for an Accelerated Population Count by Henry S. Warren, Jr. chapter 10 in Beautiful Code. |
||||||||||||||
|
|
|
My personal favourite, directly from Bit Twiddling Hacks:
|
||||||||||
|
|
|
You can define it recursively:
The code above is not tested, and probably only works for x>=0. Hopefully, you will get the idea anyways... |
||||||||||
|
|
|
See |
||||||||||||||
|
|
|
Split the 32 bit number into four 8 bit numbers (see bit shifting operator, casting etc.) Then use a lookup with 256 entries that converts the 8 bit number into a count of bits set. Add the four results, presto! Also, see what Mitch Wheat said - bit fiddling can be a lot of fun ;) |
||
|
|
|
|
See the canonical reference: Bit Twiddling Hacks |
||||
|
