gpt4 book ai didi

c++ - 如何进行特定的位操作?

转载 作者:行者123 更新时间:2023-12-02 10:05:49 27 4
gpt4 key购买 nike

我正在使用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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com