首页 > 其他 > 详细

LeetCode 191 Number of 1 Bits(1 比特的数字们)

时间:2016-01-13 00:44:10      阅读:176      评论:0      收藏:0      [点我收藏+]

翻译

写一个函数获取一个无符号整型数,并且返回它的“1”比特的数目(也被叫做Hamming weight)。

例如,一个32位整型数“11”,转换成二进制是00000000000000000000000000001011,所以这个函数应该返回3。

原文

Write a function that takes an unsigned integer and returns the number of1‘ bits it has (also known as the Hamming weight).

For example, the 32-bit integer11‘ has binary representation 00000000000000000000000000001011, so the function should return 3.

分析

这道题我之前遇到过,这里就直接贴结果了,稍候我整理一篇关于位运算的博客出来。欢迎大家再来……

代码

class Solution {
public:
    int hammingWeight(uint32_t n) {
        int count = 0;
        while (n) {
            ++count;
            n = (n - 1) &  n;
        }
        return count;
    }
};

LeetCode 191 Number of 1 Bits(1 比特的数字们)

原文:http://blog.csdn.net/nomasp/article/details/50506429

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!