Given an integer, write a function to determine if it is a power of two.
方法: 排除负数与0的情况。
class Solution {
public:
bool isPowerOfTwo(int n) {
return (n>0&&(n&(n-1))==0)?true:false;
}
};
Given an integer, write a function to determine if it is a power of two.
方法: 排除负数与0的情况。
class Solution {
public:
bool isPowerOfTwo(int n) {
return (n>0&&(n&(n-1))==0)?true:false;
}
};