LeetCode. 位1的个数

Posted Howardwang

tags:

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

题目要求:

编写一个函数,输入是一个无符号整数,返回其二进制表达式中数字位数为 ‘1’ 的个数(也被称为汉明重量)。

示例:

输入:00000000000000000000000000001011
输出:3
解释:输入的二进制串 00000000000000000000000000001011 中,共有三位为 ‘1‘。

代码:

class Solution {
public:
    int hammingWeight(uint32_t n) {
        int count = 0;
        for(int i = 0; i < 32; i++) {
            if(n & 1 == 1) {
                count += 1;
            }
            n = n >> 1;
        }
        return count;
    }
};

分析:

采用位运算,以及数的移位来做。

以上是关于LeetCode. 位1的个数的主要内容,如果未能解决你的问题,请参考以下文章

leetcode刷题笔记191 位1的个数

leetcode每日一题-191:位1的个数

leetcode 191 位1的个数

Leetcode 191.位1的个数 By Python

LeetCode-位1的个数-题号191-Java实现

LeetCode-位1的个数-题号191-Java实现