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

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

leetcode-Hamming Distance

2019-11-10 23:58:08
字體:
來源:轉載
供稿:網友

漢明碼距離

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; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永济市| 乳山市| 永春县| 龙海市| 辽源市| 夹江县| 登封市| 土默特右旗| 奎屯市| 锡林郭勒盟| 札达县| 高邮市| 城市| 红河县| 无为县| 江阴市| 蒙自县| 齐齐哈尔市| 绿春县| 循化| 呼和浩特市| 福泉市| 扬中市| 卢湾区| 杭锦旗| 潞城市| 永济市| 察隅县| 邓州市| 昆山市| 民丰县| 合水县| 麟游县| 勃利县| 双柏县| 景东| 阳东县| 西吉县| 榆林市| 阿克| 治县。|