"Leetcode" number of 1 Bits

Source: Internet
Author: User

Test instructions

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 ' have binary representation 00000000000000000000000000001011, so the function should re Turn 3.


Ideas:

Computes the binary representation of an unsigned 32-bit integer number of 1. As long as you take the last one to determine whether it is 1, then the right to move the operation is good. Complexity O (32).


Code:

C++:

Class Solution {public:    int hammingweight (uint32_t n) {        int ans = 0;        for (int i = 0;i < 32;++i)        {            if (N & 1) ans++;            n = n >> 1;        }        return ans;    };

Python:

Class solution:    # @param N, an integer    # @return A integer    def hammingweight (self, n):        ans = 0        fo R i in range (0,32):            ans = ans + (n&1)            n = n>>1        return ans

"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.