Java/191. Number of 1 Bits 位1的个数

题目         代码部分(4ms 45.91%) public class Solution { public int hammingWeight(int n) { int res = 0; while(n != 0){ n = n & (n - 1); res++; }
相关文章
相关标签/搜索