190. Reverse Bits
Posted 我的名字叫周周
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了190. Reverse Bits相关的知识,希望对你有一定的参考价值。
/* * 190. Reverse Bits * 2016-6-6 by Mingyang * 我们只需要把要翻转的数从右向左一位位的取出来,然后加到新生成的数的最低位即可 * 我刚做的时候居然想如何转换数到二进制,根本不用n&1就可以取出个位上的数了 * 另外需要注意的就是 if ((n&1)==1)需要加括号 */ public int reverseBits(int n) { int res = 0; for (int i = 0; i < 32; ++i) { if ((n&1)==1) { res = (res << 1) + 1; } else { res = res << 1; } n = n >> 1; } return res; }
以上是关于190. Reverse Bits的主要内容,如果未能解决你的问题,请参考以下文章