http://www-graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
v = v - ((v >> 1) & (T)~(T)0/3); // temp
v = (v & (T)~(T)0/15*3) + ((v >> 2) & (T)~(T)0/15*3); // temp
v = (v + (v >> 4)) & (T)~(T)0/255*15; // temp
c = (T)(v * ((T)~(T)0/255)) >> (sizeof(v) - 1) * CHAR_BIT; // count
这与Python中的问题相同:Python equivalent of C code from Bit Twiddling Hacks?
我需要在PHP中使用这个代码,独立于整数大小(上面的代码最多可以工作128位整数,这对我来说很好)。这是我试过的:
function countSetBits($int) {
$mask = (1 << PHP_INT_SIZE*8) - 1;
$int = $int - (($int >> 1) & (int) $mask/3);
$int = ($int & ((int) $mask/15)*3) + (($int >> 2) & ((int) $mask/15)*3);
$int = ($int + ($int >> 4)) & ((int) $mask/255)*15;
return ($mask & $int * ((int) $mask/255)) >> ((int) PHP_INT_SIZE - 1) * 8;
}
这不起作用的原因(在具有64位PHP的64位机器上 - Debian Squeeze)是PHP似乎不支持64位无符号整数(how to have 64 bit integer on PHP?)。我担心我将不得不使用任意精度的数学库。或者还有另一种方式吗?
答案 0 :(得分:2)
目前,这是我使用的:
function countSetBits($int) {
return substr_count(base_convert($int, 10, 2), '1');
}
答案 1 :(得分:1)
尝试在64位操作之前在php脚本中使用以下内容:
ini_set('precision', 20);