1.简述:
世界上有10种人,一种懂二进制,一种不懂。那么你知道两个int32整数m和n的二进制表达,有多少个位(bit)不同么?
输入:
3,5
复制
返回值:
2
3的二进制为11,5的二进制为101,总共有2位不同
输入:
1999,2299
返回值:
7
2.代码实现:
public class Solution {标签:count,yyds,名企,真题,int,示例,二进制,返回值,public From: https://blog.51cto.com/u_15488507/5953777
public int countBitDiff (int m, int n) {
int c = m^n;
int count = 0;
while(c != 0){
count += c & 1;
c = c >> 1;
}
return count;
}
}