Leetcode 231 Power of Two
#include <math.h>
using namespace std;
class Solution {
public:
bool isPowerOfTwo(int n) {
//如果n&(n-1)是0,则n是2的n次方
if ((n &(n - 1) )== 0 && n > 0)//要把n&(n-1)再用括号括起来
return true;
else
return false;
}
};
class Solution {
public:
bool isPowerOfTwo(int n) {
return n > 0 && 1073741824 % n == 0;//1073741824是2的30次方 ,0x7fffffff是int的最大
//值,所以在这个最大值范围之内,2的30次方就是最大的2的n次方
}
};