计算unsigned int中位转换次数的最快方法

前端之家收集整理的这篇文章主要介绍了计算unsigned int中位转换次数的最快方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找计算unsigned int中位转换次数的最快方法.

如果int包含:0b00000000000000000000000000001010

转换次数为:4

如果int包含:0b00000000000000000000000000001001

转换次数为:3

语言是C.

解决方法

int numTransitions(int a)
{
  int b = a >> 1; // sign-extending shift properly counts bits at the ends
  int c = a ^ b;  // xor marks bits that are not the same as their neighbors on the left
  return CountBits(c); // count number of set bits in c
}

为了有效实施CountBits,请参见http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel

原文链接:https://www.f2er.com/c/116939.html

猜你在找的C&C++相关文章