C++内置函数求汉明距离

C++内置函数求汉明距离

#include
using namespace std;
#define __builtin_popcount __popcnt 

int main() {
    int x = 4, y = 10;
    cout << __builtin_popcount(x ^ y) << endl;

    return 0;
}

你可能感兴趣的:(C++,c++,算法,开发语言)