作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个位集成员谓词,它应该处理 x 的所有值:
int Contains(unsigned int A, int x)
{
return (x >= 0) && (x < 8 * sizeof A) && (((1u << x) & A) != 0);
}
有没有更高效的实现方式?
最佳答案
如果 x
无符号,您可以跳过下限检查。
来自 N1570:
6.3.1.3 Signed and unsigned integers
- When a value with integer type is converted to another integer type other than _Bool, if the value can be represented by the new type, it is unchanged.
- Otherwise, if the new type is unsigned, the value is converted by repeatedly adding or subtracting one more than the maximum value that can be represented in the new type until the value is in the range of the new type. 60)
unsigned int y = x; // Wrap around if x is negative
return (y < CHAR_BIT * sizeof A) && (1u << y & A) != 0;
但不确定这是否真的带来任何有意义的改进。检查编译器输出以确保。
关于c - 位集隶属函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46196752/
我是一名优秀的程序员,十分优秀!