LeetCode题解之Hamming Distance
Posted 山里的小勇子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode题解之Hamming Distance相关的知识,希望对你有一定的参考价值。
1、题目描述
2、问题分析
使用C++ 标准库中的 bitset 类,将整数转换为二进制形式,然后再将其转换为字符串,最后比较字符串。
3、代码
1 int hammingDistance(int x, int y) { 2 3 bitset<32> a(x); 4 bitset<32> b(y); 5 6 string a_s = a.to_string(); 7 string b_s = b.to_string(); 8 9 string::iterator it1 = a_s.begin() ; 10 string::iterator it2 = b_s.begin() ; 11 int re = 0; 12 while( it1 != a_s.end() && it2 != b_s.end() ){ 13 if( *it1 != *it2 ){ 14 re++; 15 } 16 it1++; 17 it2++; 18 } 19 return re; 20 }
以上是关于LeetCode题解之Hamming Distance的主要内容,如果未能解决你的问题,请参考以下文章
leetcode No461. Hamming Distance