题解 | #牛群的编码统计#
牛群的编码统计
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; } }#题解#