Leetcode 191 Number of 1 bits (1-bit digits)

Source: Internet
Author: User

translation
写一个函数获取一个无符号整型数,并且返回它的“1”比特的数目(也被叫做Hamming weight)。例如,一个32位整型数“11”,转换成二进制是00000000000000000000000000001011,所以这个函数应该返回3。
Original
thatintegerandthenumberof ’1itasthethe32integer ’1100000000000000000000000000001011thereturn3.
Analysis

This problem I met before, here directly affixed to the results, wait a moment I tidy up a blog about the bit operations out. You are welcome to come again ...

Code
class Solution {public:    int hammingWeight(uint32_t n) {        intcount0;        while (n) {            ++count;            1) &  n;        }        returncount;    }};

Leetcode 191 Number of 1 bits (1-bit digits)

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.