Leetcode 190 Reverse Bits 位运算
Posted 我没货,只剩下水了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 190 Reverse Bits 位运算相关的知识,希望对你有一定的参考价值。
反转二进制
1 class Solution { 2 public: 3 uint32_t reverseBits(uint32_t n) { 4 uint32_t ans = 0; 5 for (int i = 0; i<32; ++i,n >>=1){ 6 ans = (ans<< 1)|(n & 1); 7 } 8 return ans; 9 } 10 };
以上是关于Leetcode 190 Reverse Bits 位运算的主要内容,如果未能解决你的问题,请参考以下文章