jz010

####二进制中一的个数
public static int test3(int n){
int count =0;
while (n!=0){
n=n&n-1;
count++;
}
return count;
}
posted @ 2021-05-24 10:14  菜鸟哟  阅读(71)  评论(0)    收藏  举报