#yyds干货盘点# 名企真题专题:懂二进制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#yyds干货盘点# 名企真题专题:懂二进制相关的知识,希望对你有一定的参考价值。
1.简述:
世界上有10种人,一种懂二进制,一种不懂。那么你知道两个int32整数m和n的二进制表达,有多少个位(bit)不同么?
输入:
3,5
复制
返回值:
2
3的二进制为11,5的二进制为101,总共有2位不同
输入:
1999,2299
返回值:
7
2.代码实现:
public class Solution
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;
以上是关于#yyds干货盘点# 名企真题专题:懂二进制的主要内容,如果未能解决你的问题,请参考以下文章