标签:检测 之间 tps 作者 problem 移动 简单 注意 联系
问题描述:
两个整数之间的汉明距离指的是这两个数字对应二进制位不同的位置的数目。
给出两个整数 x
和 y
,计算它们之间的汉明距离。
代码:
class Solution {
public int hammingDistance(int x, int y) {
int s = x ^ y, ret = 0;
while (s != 0) {
ret += s & 1;
s >>= 1;
}
return ret;
}
}
作者:LeetCode-Solution
链接:https://leetcode-cn.com/problems/hamming-distance/solution/yi-ming-ju-chi-by-leetcode-solution-u1w7/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
值得注意的是:
将X Y进行异或操作 得到S后计算1的个数 这是检测最后一位是否为1 并且将整体向右移动一位。
标签:检测 之间 tps 作者 problem 移动 简单 注意 联系
原文地址:https://www.cnblogs.com/ash98/p/14819956.html