美文网首页
231. Power of Two

231. Power of Two

作者: hyhchaos | 来源:发表于2016-12-04 18:27 被阅读3次

    Java

    public class Solution {
        public boolean isPowerOfTwo(int n) {
            if(n<=0) return false;
            while(n>1)
            {
                if(n==n/2*2)
                n=n/2;
                else
                return false;
            }
            return true;
        }
    }
    

    Javascript

    /**
     * @param {number} n
     * @return {boolean}
     */
    var isPowerOfTwo = function(n) {
            if(n<=0) return false;
            while(n>1)
            {
                if(n%2===0)
                n=n/2;
                else
                return false;
            }
            return true;
    };
    

    最优解,利用了2的次方的二进制标识只有一个1的特性

    class Solution {
    public:
        bool isPowerOfTwo(int n) {
            if(n<=0) return false;
            return !(n&(n-1));
        }
    };
    

    相关文章

      网友评论

          本文标题:231. Power of Two

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