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

求两个输入数字的汉明距离

时间:2020-04-24 14:46:21      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:ret   异或   can   pre   efi   for   i++   assert   count   

#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<assert.h> int hammingDistance(int x, int y) { int b = x ^ y;//首先二者异或去求不同的位数 int count = 0; int i = 0; for (i = 0; i < 32; i++)//要点是32位字节循环 { if (((b >> i) & 1 )== 1)//按位右移一位与1与去确定不同的位数 count++; } return count; } int main() { int x = 0, y = 0; scanf("%d%d", &x, &y); int ret = hammingDistance(x, y); printf("%d", ret); }

求两个输入数字的汉明距离

标签:ret   异或   can   pre   efi   for   i++   assert   count   

原文地址:https://blog.51cto.com/14736509/2489955

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