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

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

leetcode-Hamming Distance

2019-11-11 02:12:44
字體:
來源:轉載
供稿:網友

漢明碼距離

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; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 闽侯县| 昆明市| 舟山市| 梅河口市| 长乐市| 济宁市| 余干县| 佛山市| 体育| 永胜县| 泸溪县| 万盛区| 富平县| 冕宁县| 蕉岭县| 饶河县| 皮山县| 湘乡市| 忻州市| 海南省| 四子王旗| 廊坊市| 保定市| 双峰县| 景泰县| 临沂市| 石阡县| 南阳市| 获嘉县| 沙洋县| 宁陵县| 安庆市| 锦州市| 读书| 商水县| 泰宁县| 开江县| 清水县| 深泽县| 大兴区| 灵丘县|