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 汉明距离的主要内容,如果未能解决你的问题,请参考以下文章