[LeetCode] 231. 2 的幂

Posted ACBingo

tags:

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

位运算

231. 2 的幂

``` class Solution { public boolean isPowerOfTwo(int n) { int cnt = 0;
    while (n>0) {
        if ((n & 1) == 1) cnt++;
        n >>= 1;
    }

    return cnt == 1;
}

}

以上是关于[LeetCode] 231. 2 的幂的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] 231. 2 的幂

LeetCode 231 2的幂[循环 递归 位运算] HERODING的LeetCode之路

leetcode 231. 2 的幂

leetcode 231. 2 的幂

LeetCode 231. 2的幂

LeetCode231 2的幂