作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用74HC595移位寄存器在arduino中进行位操作的实践。
我想创建一个允许二进制数字以这种方式执行的算法:
1 0 0 0 0 0 0 1
0 1 0 0 0 0 1 0
0 0 1 0 0 1 0 0
。
。
。
1 0 0 0 0 0 0 1
在这种类型的函数中,十进制值是:(129,66,36,24,24,36,66,129)依此类推。
如何执行这种类型的转换?我对这种类型的操作没有任何流利性,我只使用“算法”执行了循环移位,例如:
//my circular shift
myByte = myByte*128 + myByte/2
最佳答案
例如,您可以使用以下方法
#include <iostream>
#include <iomanip>
#include <limits>
int main()
{
unsigned char b = 0b10000001;
int width = std::numeric_limits<unsigned char>::digits / 2;
for ( int i = 0; i < width; i++ )
{
std::cout << std::hex << static_cast<int>( b ) << " - "
<< std::dec << static_cast<int>( b ) << '\n';
b = ( b & ( 0b1111 << width ) ) >> 1 | ( b & 0b1111 ) << 1;
}
for ( int i = 0; i < width; i++ )
{
std::cout << std::hex << static_cast<int>( b ) << " - "
<< std::dec << static_cast<int>( b ) << '\n';
b = ( b & ( 0b1111 << width ) ) << 1 | ( b & 0b1111 ) >> 1;
}
return 0;
}
81 - 129
42 - 66
24 - 36
18 - 24
18 - 24
24 - 36
42 - 66
81 - 129
关于c++ - 如何进行特定的位操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60253863/
我是一名优秀的程序员,十分优秀!