码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode461 汉明距离

时间:2018-12-11 19:58:25      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:异或操作   span   bsp   while   AMM   tco   min   异或   res   

对数的与,异或操作

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

 

leetcode461 汉明距离

标签:异或操作   span   bsp   while   AMM   tco   min   异或   res   

原文地址:https://www.cnblogs.com/biubiuWham/p/10104218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!