标签: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; } }
标签:integer 整数 com 地址 div problems problem @param 示例
原文地址:https://www.cnblogs.com/8013-cmf/p/13306536.html