位运算——Power of Two

Posted ADong

tags:

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

判断一个整数是不是2的幂。

关键是弄明白2的幂的二进制形式只有一个1。

 1 public class Solution {
 2     public boolean isPowerOfTwo(int n) {
 3         int count = 0;
 4         if (n <= 0) {
 5             return false;
 6         } else {
 7             while (n != 0) {
 8                 if ((n & 1) == 1) {
 9                     count++;
10                 }
11                 n = n >> 1;
12                 if (count > 1) {
13                     return false;
14                 }
15             }
16             return true;
17         }
18     }
19 }

 

以上是关于位运算——Power of Two的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 231. Power of Two

leetcode_231 Power Of Two(Bit Manipulation)

leetcode_Power of Two_easy

LeetCode 231:Power of Two

[LeetCode] Power of Two

LeetCode(231) Power of Two