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

汉明距离

时间:2017-05-02 23:41:37      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:ret   over   table   表示   border   padding   lis   list   res   

public class Solution {
  public int hammingDistance(int x, int y) {
  return Integer.bitCount(x ^ y);
  }
}

 

bitCount api  :

static int bitCount(int i)
Returns the number of one-bits in the two‘s complement binary representation of the specified int value.

返回指定int值的二进制补码二进制表示中的一位数。

汉明距离

标签:ret   over   table   表示   border   padding   lis   list   res   

原文地址:http://www.cnblogs.com/yinfj/p/6798896.html

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