剑指offer面试题 15. 二进制中 1 的个数
Posted hglibin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer面试题 15. 二进制中 1 的个数相关的知识,希望对你有一定的参考价值。
面试题 15. 二进制中 1 的个数
题目描述
题目:输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。
代码实现
方法一
public class Solution { // you need to treat n as an unsigned value public int hammingWeight(int n) { int count=0; while(n!=0){ count+=(n&1); n=n>>>1; } return count; } }
方法二
public class Solution { // you need to treat n as an unsigned value public int hammingWeight(int n) { int count = 0; while(n!=0){ n = n&(n-1); count++; } return count; } }
以上是关于剑指offer面试题 15. 二进制中 1 的个数的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode---剑指Offer题15---二进制中1的个数