zoukankan      html  css  js  c++  java
  • LeetCode 第 191 题 (Number of 1 Bits)

    LeetCode 第 191 题 (Number of 1 Bits)

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

    For example, the 32-bit integer ’11’ has binary representation 00000000000000000000000000001011, so the function should return 3.

    这道题也很easy, 用个循环语句把 32 位都測一遍即可了。

    class Solution {
    public:
        int hammingWeight(uint32_t n) {
            int count = 0;
            uint32_t test_bit = 1;
            for(int i = 0; i < 32; i++)
            {
                if(test_bit & n) count ++;
                test_bit = test_bit << 1;
            }
            return count;
        }
    };
  • 相关阅读:
    Permutations II
    N-Queens II
    Palindrome Number
    Minimum Path Sum
    JS的DOM操作2
    JS 的DOM操作
    函数概念
    JavaScript数组
    JavaScript循环及练习
    JS语言
  • 原文地址:https://www.cnblogs.com/wgwyanfs/p/7232298.html
Copyright © 2011-2022 走看看