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

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

LeetCode題解: Number Complement

2019-11-14 10:02:56
字體:
供稿:網(wǎng)友

Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary rePResentation.

Note:

The given integer is guaranteed to fit within the range of a 32-bit signed integer.You could assume no leading zero bit in the integer’s binary representation.

Example 1:

Input: 5Output: 2Explanation: The binary representation of 5 is 101 (no leading zero bits), and its complement is 010. So you need to output 2.

Example 2:

Input: 1Output: 0Explanation: The binary representation of 1 is 1 (no leading zero bits), and its complement is 0. So you need to output 0.

思路:

數(shù)清leading zeros,翻轉(zhuǎn)位,然后清掉不需要的位。

題解:

int findComplement(int num) {    int zeros(0);    for(; zeros < 32; ++zeros) {        if (num & (1 << 31)) {            break;        }        num <<= 1;    }    num = ~num;    for(; zeros > 0; --zeros) {        num >>= 1;    }    return num;}


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 惠水县| 郎溪县| 都匀市| 拜泉县| 寻甸| 阿图什市| 古田县| 金山区| 中超| 辽宁省| 赫章县| 琼海市| 桓仁| 苏州市| 夹江县| 察隅县| 达州市| 清水县| 陇川县| 双流县| 克拉玛依市| 贵溪市| 四川省| 江津市| 登封市| 七台河市| 淮南市| 松潘县| 旺苍县| 宝兴县| 舞钢市| 龙川县| 搜索| 阿坝| 额敏县| 中阳县| 任丘市| 信阳市| 柘荣县| 天镇县| 托里县|