Java
public class Solution {
// you need to treat n as an unsigned value
public int hammingWeight(int n) {
int count=0;
while(n!=0)
{
n=n&(n-1);
count++;
}
return count;
}
}
public class Solution {
// you need to treat n as an unsigned value
public int hammingWeight(int n) {
int count=0;
while(n!=0)
{
n=n&(n-1);
count++;
}
return count;
}
}
本文标题:191. Number of 1 Bits
本文链接:https://www.haomeiwen.com/subject/vrfrmttx.html
网友评论