美文网首页Leetcode每日两题
Leetcode 231. Power of Two

Leetcode 231. Power of Two

作者: ShutLove | 来源:发表于2018-01-31 19:43 被阅读14次

    Given an integer, write a function to determine if it is a power of two.

    题意:判断一个数字是不是2的整数次幂。

    思路:2的整数次幂,包括2的0次幂,在二进制表示中,所有bit位上只会有一个1。

    1. 可以通过用1从0到31不停右移统计1一共出现过几次。
    2. 如果只有一个bit位是1,则n & (n-1)的结果是0。
        public boolean isPowerOfTwo(int n) {
            if (n <= 0) {
                return false;
            }
            return (n & (n - 1)) == 0;
        }
    

    相关文章

      网友评论

        本文标题:Leetcode 231. Power of Two

        本文链接:https://www.haomeiwen.com/subject/ymvlzxtx.html