汉明距离
Posted fj_yin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了汉明距离相关的知识,希望对你有一定的参考价值。
public class Solution {
public int hammingDistance(int x, int y) {
return Integer.bitCount(x ^ y);
}
}
bitCount api :
static int |
bitCount(int i)
Returns the number of one-bits in the two‘s complement binary representation of the specified
int value. |
返回指定int值的二进制补码二进制表示中的一位数。
以上是关于汉明距离的主要内容,如果未能解决你的问题,请参考以下文章