public class Solution { public int NumberOf1(int n) { int count = 0; while(n != 0){ count++; n = n&(n-1); } return count; } }
二进制中1的个数
原文:https://www.cnblogs.com/codingLiu/p/12690765.html