zoukankan      html  css  js  c++  java
  • JZ-011-二进制中 1 的个数

    二进制中 1 的个数

    题目描述

    输入一个整数,输出该数32位二进制表示中1的个数。其中负数用补码表示。

    题目链接: 二进制中 1 的个数

    代码

    /**
     * 标题:二进制中 1 的个数
     * 题目描述
     * 输入一个整数,输出该数32位二进制表示中1的个数。其中负数用补码表示。
     * 题目链接:
     * https://www.nowcoder.com/practice/8ee967e43c2c4ec193b040ea7fbb10b8?tpId=13&&tqId=11164&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking
     */
    public class Jz11 {
    
        public static void main(String[] args) {
            System.out.println(numberOf1(10));
            System.out.println(numberOf2(10));
        }
    
        /**
         * n&(n-1)
         * 该位运算去除 n 的位级表示中最低的那一位。
         * n       : 10110100
         * n-1     : 10110011
         * n&(n-1) : 10110000
         *
         * @param n
         * @return
         */
        public static int numberOf1(int n) {
            int cnt = 0;
            while (n != 0) {
                cnt++;
                n &= n - 1;
            }
            return cnt;
        }
    
        /**
         * 库方法
         *
         * @param n
         * @return
         */
        public static int numberOf2(int n) {
            return Integer.bitCount(n);
        }
    }
    

    【每日寄语】 你的微笑是最有治愈力的力量,胜过世间最美的风景。

  • 相关阅读:
    leetcode5
    leetcode4
    maven笔记
    枚举使用笔记
    List遍历删除解决方案:遍历删除,迭代删除,removeIf
    java笔记(web部分)
    webview使用
    json数据格式+gson解析json问题总结
    android:layout_weight的简单使用
    欢迎界面效果
  • 原文地址:https://www.cnblogs.com/kaesar/p/15488313.html
Copyright © 2011-2022 走看看