面试150 位1的个数 位运算

Problem: 191. 位1的个数
面试150 位1的个数 位运算_第1张图片

文章目录

  • 思路
  • 复杂度
  • Code

思路

‍ 参考

复杂度

面试150 位1的个数 位运算_第2张图片

Code

public class Solution {
    // you need to treat n as an unsigned value
	public int hammingWeight(int n)
	{
		int res = 0;
		while (n != 0)
		{
			res += 1;
			n &= n - 1;// 把最后一个出现的 1 改为 0,和 lowbit 有异曲同工之妙
		}
		return res;
	}
}

你可能感兴趣的:(面试150,算法)