191. Number of 1 Bits
问题描述
解决方案
//8ms
class Solution {
public:
int hammingWeight(uint32_t n) {
bitset<32> bi(n);
return bi.count();
}
};
//4ms
// class Solution {
// public:
// int hammingWeight(uint32_t n) {
// int count=0;
// while(n!=0)
// {
// n=n&(n-1);
// ++count;
// }
// return count;
// }
// };
作者:弦断
出处:http://www.cnblogs.com/ucas/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。