[Leetcode学习-java]Hamming Distance(int的汉明距离)

问题:

难度:easy

说明:

给两个整形 a b,求整形的 位元 汉明距离,汉明距离是指两个等长字符串之间不同的字符个数,题目就要求写出32位int不同的位元个数。

问题链接:https://leetcode.com/problems/hamming-distance/

相关算法:

Edit Distance(编辑距离):https://blog.csdn.net/qq_28033719/article/details/106472232

Total Hamming Distance(所有int的汉明距离):https://blog.csdn.net/qq_28033719/article/details/107150716

 

输入案例:

Input: x = 1, y = 4

Output: 2

Explanation:
1   (0 0 0 1)
4   (0 1 0 0)
       ↑   ↑

The above arrows point to positions where the corresponding bits are different.

我的代码:

水题,汉明距离的话是比较字符串,那么整形的话也简单,固定32位,一个异或就知道多少不相同了。

class Solution {
    public int hammingDistance(int x, int y) {
        int d = x ^ y;
        int count = 0;
        while(d != 0) {
            if((d & 1) != 0) count ++;
            d >>= 1;
        }
        return count;
    }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值