190. Reverse Bits (Binary)

Posted gopanama

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了190. Reverse Bits (Binary)相关的知识,希望对你有一定的参考价值。

>>>表示无符号右移,左边空出的位以0填充
>>=右移赋值
>>>=无符号右移赋值
<<= 左移赋值
<<左移

 

 1 class Solution {
 2     // you need treat n as an unsigned value
 3     public int reverseBits(int n) {
 4         int res = 0;
 5         for(int i = 0; i < 32; i++) {
 6             res <<= 1;
 7             res += n & 1;
 8             n >>>= 1;
 9             
10         }
11         return res;   
12     }
13 }

 





以上是关于190. Reverse Bits (Binary)的主要内容,如果未能解决你的问题,请参考以下文章

#Leetcode# 190. Reverse Bits

190. Reverse Bits

LeetCode 190. Reverse Bits

Leetcode-190 Reverse Bits

LeetCode_190. Reverse Bits

190. Reverse Bits [easy] (Python)