190. Reverse Bits

1.描述

Reverse bits of a given 32 bits unsigned integer.

For example, given input 43261596 (represented in binary as 00000010100101000001111010011100), return 964176192 (represented in binary as 00111001011110000010100101000000).

Follow up:
If this function is called many times, how would you optimize it?

2.分析

3.代码

uint32_t reverseBits(uint32_t n) {
    uint32_t result = n;
    result = ((result & 0xffff0000) >>16) | ((result & 0x0000ffff) << 16);
    result = ((result & 0xff00ff00) >> 8) | ((result & 0x00ff00ff) << 8);
    result = ((result & 0xf0f0f0f0) >> 4) | ((result & 0x0f0f0f0f) << 4);
    result = ((result & 0xcccccccc) >> 2) | ((result & 0x33333333) << 2);
    result = ((result & 0xaaaaaaaa) >> 1) | ((result & 0x55555555) << 1);
    return result;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • LeetCode 190 Reverse Bits ======================= Reverse...
    ShuiLocked阅读 2,682评论 0 0
  • Reverse Bits Reverse bits of a given 32 bits unsigned int...
    gammaliu阅读 3,895评论 0 0
  • Reverse bits of a given 32 bits unsigned integer.For exam...
    Jeanz阅读 1,560评论 0 0
  • “一念执著,相思成蛊。清颜若水,菱花微波浣溪纱。雾非雾,花非花,嫣然一笑醉无眠。一曲离殇,唱不出朱颜难断。...
    小樱的下午茶阅读 1,215评论 0 0
  • 总是怀念过去 却忘了 现在也是以后的过去 而孤独 无论从前,现在,以后 它从未质变 抹一抹嘴角 回味着过往的苦涩 ...
    fdfd862e5652阅读 1,092评论 0 2