剑指Office-二进制中1的个数

简介: 剑指Office-二进制中1的个数
//请实现一个函数,输入一个整数,输出该数二进制表示中 1 的个数。例如,把 9 表示成二进制是 1001,有 2 位是 1。因此,如果输入 9,则该函数输出 
//2。 
//
// 示例 1: 
//
// 输入:00000000000000000000000000001011
//输出:3
//解释:输入的二进制串 00000000000000000000000000001011 中,共有三位为 '1'。
// 
//
// 示例 2: 
//
// 输入:00000000000000000000000010000000
//输出:1
//解释:输入的二进制串 00000000000000000000000010000000 中,共有一位为 '1'。
// 
//
// 示例 3: 
//
// 输入:11111111111111111111111111111101
//输出:31
//解释:输入的二进制串 11111111111111111111111111111101 中,共有 31 位为 '1'。 
//
// 
//
// 注意:本题与主站 191 题相同:https://leetcode-cn.com/problems/number-of-1-bits/ 
// Related Topics 位运算
//leetcode submit region begin(Prohibit modification and deletion)
public class Solution {
    // you need to treat n as an unsigned value
    public int hammingWeight(int n) {
    }
}
//leetcode submit region end(Prohibit modification and deletion)

提交

public class Solution {
    // you need to treat n as an unsigned value
    public int hammingWeight(int n) {
          return Integer.bitCount(n);
    }
}

内部实现

public static int bitCount(int i) {
  // HD, Figure 5-2
   i = i - ((i >>> 1) & 0x55555555);
   i = (i & 0x33333333) + ((i >>> 2) & 0x33333333);
   i = (i + (i >>> 4)) & 0x0f0f0f0f;
   i = i + (i >>> 8);
   i = i + (i >>> 16);
   return i & 0x3f;
}

解法2

public class Solution {
    // you need to treat n as an unsigned value
    public int hammingWeight(int n) {
        // return Integer.bitCount(n);
        int count = 0;
        while(n!=0){
            n &= (n-1);
            count++;
        }
        return count;
    }
}
目录
相关文章
|
6月前
|
机器学习/深度学习
剑指 Offer 15:二进制中1的个数
剑指 Offer 15:二进制中1的个数
58 0
|
1月前
|
C语言
剑指 Offer 15. 二进制中1的个数
这篇文章介绍了如何通过位运算计算一个无符号整数的二进制表示中1的个数,即汉明重量,并提供了相应的C语言函数实现。
33 0
|
6月前
《剑指offer》——二进制中1的个数
《剑指offer》——二进制中1的个数
【剑指offer】-二进制中1的个数-11/67
【剑指offer】-二进制中1的个数-11/67
|
6月前
剑指Office-旋转数组的最小数
剑指Office-旋转数组的最小数
43 0
剑指office-11.矩阵中的路径
剑指office-11.矩阵中的路径
40 0
|
机器学习/深度学习 C++
剑指offer 14. 二进制中1的个数
剑指offer 14. 二进制中1的个数
56 0
|
Python
LeetCode 剑指 Offer II 003. 前 n 个数字二进制中 1 的个数
给定一个非负整数 n ,请计算 0 到 n 之间的每个数字的二进制表示中 1 的个数,并输出一个数组。
111 0
|
Java C++
LeetCode(剑指 Offer)- 46. 把数字翻译成字符串
LeetCode(剑指 Offer)- 46. 把数字翻译成字符串
103 0
LeetCode(剑指 Offer)- 46. 把数字翻译成字符串
LeetCode(剑指 Offer)- 17. 打印从1到最大的n位数
LeetCode(剑指 Offer)- 17. 打印从1到最大的n位数
112 0