标签:
1、231 Power of Two
题目很简单,直接上代码,主要是掌握bitset的使用。
1 class Solution { 2 public: 3 bool isPowerOfTwo(int n) { 4 bitset<32> myset(n); 5 if (n<=0) 6 { 7 return false; 8 } 9 10 if (1==myset.count() || 0==myset.count()) 11 { 12 return true; 13 } 14 15 return false; 16 17 18 } 19 };
标签:
原文地址:http://www.cnblogs.com/LCCRNblog/p/4625266.html