二進位制中 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);
}
}
【每日寄語】 你的微笑是最有治癒力的力量,勝過世間最美的風景。