PHP 相当于 Bit Twiddling Hacks 中的 C 代码?

发布于 2024-10-20 16:28:39 字数 1410 浏览 3 评论 0原文

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 相当于 Bit Twiddling Hacks 中的 C 代码?

我需要在 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 位无符号整数(如何在 PHP 上拥有 64 位整数?)。恐怕我将不得不使用任意精度的数学库。或者还有别的办法吗?

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

This is the same problem in Python: Python equivalent of C code from Bit Twiddling Hacks?

I need to use this code in PHP, independently from integer size (the above code works up to 128-bit integers, which will do fine for me). Here's what I tried:

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;
}

The reason this doesn't work (on a 64-bit machine with 64-bit PHP - Debian Squeeze) is that PHP doesn't seem to support 64-bit unsigned integers (how to have 64 bit integer on PHP?). I'm afraid I will have to use an arbitrary-precision math library. Or is there another way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

在巴黎塔顶看东京樱花 2024-10-27 16:28:39

现在,这就是我使用的:

    function countSetBits($int) {
            return substr_count(base_convert($int, 10, 2), '1');
    }

For now, this is what I used:

    function countSetBits($int) {
            return substr_count(base_convert($int, 10, 2), '1');
    }
三岁铭 2024-10-27 16:28:39

在 64 位操作之前,尝试在 php 脚本中使用以下内容:

ini_set('precision', 20); 

Try to use the following in your php script before 64-bit operations:

ini_set('precision', 20); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文