问题描述
解决方案
位运算
class Solution {public: bool isPowerOfTwo(int n) { return n>0&&!(n&(n-1)); }};
bitset
class Solution {public: bool isPowerOfTwo(int n) { if(n>0) { bitsetb(n); if(b.count()==1) return true; } return false; }};
本文共 380 字,大约阅读时间需要 1 分钟。
class Solution {public: bool isPowerOfTwo(int n) { return n>0&&!(n&(n-1)); }};
class Solution {public: bool isPowerOfTwo(int n) { if(n>0) { bitsetb(n); if(b.count()==1) return true; } return false; }};
转载于:https://www.cnblogs.com/ucas/p/5794546.html