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

461. 汉明距离

时间:2020-07-15 22:55:36      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:integer   整数   com   地址   div   problems   problem   @param   示例   

地址:https://leetcode-cn.com/problems/hamming-distance/

<?php
/**

两个整数之间的汉明距离指的是这两个数字对应二进制位不同的位置的数目。

给出两个整数 x 和 y,计算它们之间的汉明距离。

注意:
0 ≤ x, y < 231.

示例:

输入: x = 1, y = 4

输出: 2

解释:
1   (0 0 0 1)
4   (0 1 0 0)
↑   ↑

上面的箭头指出了对应二进制位不同的位置。
 */
class Solution {

    /**
     * @param Integer $x
     * @param Integer $y
     * @return Integer
     */
    function hammingDistance($x, $y) {
        $n = $x ^ $y;
        $num = 0;
        while($n){
            if($n &1){
                $num++;
            }
            $n >>= 1;
        }
        return $num;
    }
}

 

461. 汉明距离

标签:integer   整数   com   地址   div   problems   problem   @param   示例   

原文地址:https://www.cnblogs.com/8013-cmf/p/13306536.html

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