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

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

leetcode-Hamming Distance

2019-11-11 00:55: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; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 子洲县| 灵武市| 左权县| 台山市| 莎车县| 陆河县| 巴南区| 闸北区| 民乐县| 安泽县| 山西省| 富平县| 漠河县| 凤山县| 大同市| 奉贤区| 乌恰县| 阳春市| 孟州市| 石首市| 公安县| 汽车| 眉山市| 济阳县| 什邡市| 江西省| 阿拉善盟| 沙雅县| 微山县| 扶沟县| 阜宁县| 崇州市| 称多县| 沐川县| 雅安市| 广德县| 镇江市| 龙南县| 攀枝花市| 三江| 封丘县|