汉明距离

两个整数之间的汉明距离指的是这两个数字对应二进制位不同的位置的数目。

给出两个整数 x 和 y,计算它们之间的汉明距离。

注意:
0 ≤ x, y < 231.

示例:

输入: x = 1, y = 4

输出: 2

解释:
1 (0 0 0 1)
4 (0 1 0 0)
↑ ↑

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/hamming-distance
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

public int hammingDistance(int x, int y) {
        int temp=x^y;
        int j=temp%2;
        temp=temp/2;
        int count=j==1?1:0;
        while (temp!=0){
            j=temp%2;
            temp=temp/2;
            if(j==1){
                count++;
            }
        }
        return count;
    }

你可能感兴趣的:(汉明距离)