国产探花免费观看_亚洲丰满少妇自慰呻吟_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; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 北票市| 葵青区| 罗甸县| 青海省| 永平县| 渭南市| 乐业县| 卢氏县| 开化县| 饶河县| 静宁县| 定南县| 峨山| 鲁山县| 西和县| 嘉善县| 隆子县| 吴堡县| 塘沽区| 长子县| 盱眙县| 邵武市| 延津县| 阳曲县| 海南省| 余庆县| 军事| 奎屯市| 平罗县| 永德县| 盐源县| 普定县| 镇平县| 阜新| 仪陇县| 木兰县| 乌苏市| 昌黎县| 马鞍山市| 横山县| 承德县|