题解 | #牛群的编码统计#

牛群的编码统计

https://www.nowcoder.com/practice/89500cbfd12a4c9f893aafb3c308baa2

题目考察的知识点是:

位运算

题目解答方法的文字分析:

利用数字的位运算,不断将n右移,根据最后一位&1后的结果,统计32位中0的个数count

本题解析所用的编程语言:

java语言。

完整且正确的编程代码:

import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param n int整型
     * @return int整型
     */
    public int countZeros (int n) {
        // write code here
        String s = Integer.toBinaryString(n);
        int count = 0;
        while (s.length() < 32) {
            if (n >= 0) {
                s = '0' + s;
            } else {
                s = '1' + s;
            }
        }
        for (int i = 0; i < s.length(); i++) {
            if (s.charAt(i) == '0') count++;
        }
        return count;
    }
}

#题解#
全部评论

相关推荐

点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务