标签:question 二进制 整数 去掉 count 负数 amp content 就是
public class Solution { public int NumberOf1(int n) { int count = 0; while(n != 0){ count++; n = n&(n-1); } return count; } }
标签:question 二进制 整数 去掉 count 负数 amp content 就是
原文地址:https://www.cnblogs.com/codingLiu/p/12690765.html