题解 | #二进制中1的个数#
二进制中1的个数
http://www.nowcoder.com/practice/8ee967e43c2c4ec193b040ea7fbb10b8
位运算第二题 随便看看
class Solution {
public:
int NumberOf1(int n) {
int ans = 0;
// 不是算法了 就认识& 的功能
while (n != 0) {
++ans;
n = n & (n-1);
}
return ans;
}
};
public:
int NumberOf1(int n) {
int ans = 0;
// 不是算法了 就认识& 的功能
while (n != 0) {
++ans;
n = n & (n-1);
}
return ans;
}
};
题解 文章被收录于专栏
一遍做剑指offer 一边保存做题步骤 并附带详细注释哦