Bits to Byte in C++

假如想象 提交于 2019-12-12 06:45:45

问题


I'm trying to:

  1. convert a group of 8 integers, all of value 0 or 1, into a byte
  2. reverse the bit order of that byte
  3. print the value of that byte (in what format?) ( i can guess until i have it right here )

Also, I'm not allowed to use the STL for this problem.


回答1:


So, you want to reverse the bits in a byte. That is, the bits should move so:

from: 7 6 5 4 3 2 1 0
to:   0 1 2 3 4 5 6 7

This code will do it, inelegantly - you can find much better algorithms if you search. Can you see how it works though?

uint8_t reverse_bits(uint8_t byte)
{
    return ((byte & 0x01) << 7)
          |((byte & 0x02) << 5)
          |((byte & 0x04) << 3)
          |((byte & 0x08) << 1)
          |((byte & 0x10) >> 1)
          |((byte & 0x20) >> 3)
          |((byte & 0x40) >> 5)
          |((byte & 0x80) >> 7);
}



回答2:


A simple method is to mask rest of bits, as you can see in way to read individual bits.



来源:https://stackoverflow.com/questions/15317130/bits-to-byte-in-c

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!