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

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

LeetCode: Hamming Distance

2019-11-09 19:37:45
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

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 ≤ xy < 231.

Example:

Input: x = 1, y = 4Output: 2Explanation:1   (0 0 0 1)4   (0 1 0 0)       ↑   ↑The above arrows point to positions where the corresponding bits are different.

Subscribe to see which companies asked this question.

int hammingDistance(int x, int y) {        int d = 0;    for (int i = 0; i < 32; ++i)    {        d += (x & 1) ^ (y & 1);        x >>= 1;        y >>= 1;    }        return d;}


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 焉耆| 阜城县| 定远县| 舒城县| 布尔津县| 宁明县| 凤冈县| 无锡市| 高阳县| 喀什市| 乌拉特中旗| 临邑县| 中西区| 梨树县| 汤阴县| 内乡县| 宁国市| 鄂伦春自治旗| 南川市| 荣昌县| 瑞安市| 天台县| 霍林郭勒市| 西林县| 遂昌县| 文昌市| 巴楚县| 酒泉市| 镇康县| 平山县| 扶沟县| 临澧县| 曲水县| 本溪| 康乐县| 佛山市| 望奎县| 徐闻县| 浦东新区| 黔东| 鸡西市|