Lc_剑指Offer15二进制中1的个数--------位运算

Posted 小傻孩、儿

tags:

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


package com.example.leetcode;

/**
 * @description:
 * @author: licm
 * @create: 2021-06-23 09:44
 **/
public class Lc_剑指Offer15二进制中1的个数 {
    // you need to treat n as an unsigned value
    public static int hammingWeight(int n) {
        /**
         * 标准位运算题目
         * 1&1 = 1
         * 0&1 = 0
         * 无符号右移 >>>
         */
        int res = 0;
        while(n!=0){
            res+=n&1;
            n=n>>>1;
        }
        return res;
    }

    public static void main(String[] args) {
        System.out.println(hammingWeight(00000000000000000000000000001011));
    }
}


以上是关于Lc_剑指Offer15二进制中1的个数--------位运算的主要内容,如果未能解决你的问题,请参考以下文章

剑指 Offer 15. 二进制中1的个数

剑指offer--15二进制中1的个数

LeetCode 剑指Offer 15[位运算] 二进制中1的个数 HERODING的LeetCode之路

剑指Offer08 二进制中1的个数

剑指 Offer 15. 二进制中1的个数

剑指 Offer 15. 二进制中1的个数