LeetCode 231:Power of Two

Posted llguanli

tags:

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

??

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

//题目要求:求一个数是否是2的幂次方
//解题方法:
//方法一:假设某个值是2的幂次方所得,其相应二进制则是最高位为1。其余位为0.
//n-1则相反,除了最高位,其余比特位均为1,则我们能够推断n&(n-1)是否等于0来推断n是否是2的幂次方值。
class Solution{
public:
	bool isPowerOfTwo(int n){
		if (n <= 0) return false;
		else
			return (n & (n - 1)) == 0;
	}
};


//方法二:循环利用n=n/2,依据n%2是否等于1。来推断n是否为2的幂次方
class Solution{
public:
	bool isPowerOfTwo(int n){
		if (n <= 0) return false;
		while (n){
			if (n % 2 != 0 && n != 1) 
				return false;
			n = n / 2;
		}
		return true;
	}
};
技术分享





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

#Leetcode# 231. Power of Two

LeetCode 231. Power of Two

LeetCode_231. Power of Two

leetcode 231. Power of Two

LeetCode231. Power of Two

leetcode 231. Power of Two