leetcode461 汉明距离

Posted biubiuwham

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode461 汉明距离相关的知识,希望对你有一定的参考价值。

对数的与,异或操作

 int hammingDistance(int x, int y) {
    int res=0;
    int z=x^y;//得到两个数的不同位置
    while(z!=0)
    {
      res++;
      z&=(z-1);    
    }
return res;
}
    

 

以上是关于leetcode461 汉明距离的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 461. 汉明距离

LeetCode--461--汉明距离

leetcode461 汉明距离

461-汉明距离

统计二进制中1的个数(LeetCode 461. 汉明距离 or LeetCode 191. 位1的个数)

LeetCode 461. Hamming Distance (汉明距离)