LeetCode-191. Number of 1 Bits

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode-191. Number of 1 Bits相关的知识,希望对你有一定的参考价值。

这道题考察的是一个二进制的特性。通过n&(n-1)可以判断n的二进制表示中有几个1.(最开始超时这道题的时候我心中是万马奔腾的) 

// you need to treat n as an unsigned value

public int hammingWeight(int n) { int count=0;while(n!=0) { count++; n = n & (n - 1); } return count; }

开始我的代码:

public int hammingWeight(int n)
{
    int count=0;
    while(n!=0)
    {
        count+=n&0x1;
        n=n>>1;
    }
    return count;
}

 

以上是关于LeetCode-191. Number of 1 Bits的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 191. Number of 1 Bits

leetcode 191. Number of 1 Bits

[leetcode-191-Number of 1 Bits]

LeetCode 191 Number of 1 Bits

LeetCode - 191. Number of 1 Bits

LeetCode-191. Number of 1 Bits