国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

leetcode-Hamming Distance

2019-11-11 00:57:19
字體:
來源:轉載
供稿:網友

漢明碼距離

The Hamming distance between two integers is the number of positions at which the corresponding bits are different.

Given two integers x and y, calculate the Hamming distance.

Note: 0 ≤ x, y < 231.

Example:

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.

class Solution {public: int hammingDistance(int x, int y) { int dis = 0; int sx[32] = {0}; int sy[32] = {0}; int xi = 0; int yi = 0; while(x != 0){ sx[xi++] = x % 2; x /= 2; } while(y != 0){ sy[yi++] = y % 2; y /= 2; } for(int i = 0 ; i < 32; i++){ if(sx[i] != sy[i]){ dis++; } } return dis; }};
上一篇:Cogs 1500. 誤差曲線(三分)

下一篇:Map總結

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 阆中市| 两当县| 金沙县| 卢龙县| 青州市| 榆树市| 当雄县| 宁远县| 永泰县| 怀来县| 信阳市| 唐山市| 马鞍山市| 阳东县| 西林县| 阳山县| 台前县| 余干县| 灵川县| 景德镇市| 河曲县| 康保县| 亳州市| 阜阳市| 滦平县| 长宁区| 巧家县| 上杭县| 隆昌县| 石泉县| 辛集市| 奉化市| 济阳县| 故城县| 波密县| 新和县| 公主岭市| 类乌齐县| 阿拉善左旗| 雷山县| 枞阳县|