231 Power of Two 2的幂

Posted lina2014

tags:

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

给定一个整数,写一个函数来判断它是否是2的幂。

详见:https://leetcode.com/problems/power-of-two/description/

class Solution {
public:
    bool isPowerOfTwo(int n) {
        return (n>0)&&(!(n&(n-1)));
    }
};

  

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

leetcode-231-Power of Two

[LeetCode]231. Power of Two判断是不是2的幂

LeetCode 231:Power of Two

LeetCode191 Number of 1 Bits. LeetCode231 Power of Two. LeetCode342 Power of Four

231. 2 的幂

LeetCode(231) Power of Two