Leetcode:number of 1 Bits

Source: Internet
Author: User

Write a function that takes an unsigned integer and returns the number of ' 1 ' bits it has (also known as the Hamming weigh T).

For example, the 32-bit integer ' One ' 00000000000000000000000000001011 has a binary representation, so the function should return 3.

Analysis: Test instructions calculates the number of 1 in the 32-bit integer 2 binary representation.

The method is still very numerous and well understood:

1, the use of 2 mathematical characteristics of the system to

Class Solution {public:    int hammingweight (uint32_t n) {        int count=0;        while (n) {        if (n%2==1) count++;        N=N/2;        }        return count;    }};

2, each bit and 1 do and calculation, calculate not 0 of the number can be

Class Solution {public:    int hammingweight (uint32_t n) {        int count=0;        while (n) {        count+=n&1;        n>>=1;        }        return count;    }};

3. Each n& (n-1) can reduce the number of bits in N to 1

Class Solution {public:    int hammingweight (uint32_t n) {        int sum = 0;        while (n)        {            n &= (n-1);            ++sum;        }         return sum;    }};

  

  

Leetcode:number of 1 Bits

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.