231. Power of Two

Posted 阿怪123

tags:

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

public class Solution {
    public boolean isPowerOfTwo(int n) {
        if(n<=0)
            return false;
        else if(n==1)
            return true;
        int temp=n;
        int count=0;
        while(temp!=1)
        {
            temp/=2;
            count++;
        }
        for(int i=0;i<count;i++)
            temp*=2;
        if(temp==n)
            return true;
        else
            return false;
        
    }
}

 

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

LeetCode(231) Power of Two

231. Power of Two

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

231. Power of Two

[leetcode]231. Power of Two

#Leetcode# 231. Power of Two