Leetcode 461. 汉明距离

题目

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

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

注意:
0 ≤ x, y < 231.

示例:

输入: x = 1, y = 4

输出: 2
解释:
1   (0 0 0 1)
4   (0 1 0 0)
       ↑   ↑

上面的箭头指出了对应二进制位不同的位置。

C++解法


#include 
using namespace std;
class Solution {
public:
    int hammingDistance(int x, int y) {
        int total = 0;
        for (int i = 0; i < 32; i++) {
            total += ((x >> i) & 1) ^ ((y >> i) & 1);
        }
        return total;
    }
};
int main(int argc, const char * argv[]) {
    // insert code here...
    Solution solution;
    cout << solution.hammingDistance(1, 4) << endl;
    return 0;
}

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/hamming-distance

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