Given an unsigned int, I have to implement the following operations :
- Count the number of bits set to 1
- Find the index of the left-most 1 bit
- Find the index of the righ-most 1 bit
(the operation should not be architecture dependents).
I've done this using bitwise shift, but I have to iterate through almost all the bits(es.32) .
For example, counting 1's:
unsigned int number= ...;
while(number != 0){
if ((number & 0x01) != 0)
++count;
number >>=1;
}
The others operation are similar.
So my question is: is there any faster way to do that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…