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

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

LeetCode題解: Number Complement

2019-11-14 11:25:48
字體:
來源:轉載
供稿:網友

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.

思路:

數清leading zeros,翻轉位,然后清掉不需要的位。

題解:

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;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 望谟县| 华亭县| 巴林左旗| 水城县| 循化| 铁力市| 海丰县| 海宁市| 军事| 临猗县| 秦安县| 汾西县| 施秉县| 会昌县| 哈尔滨市| 垦利县| 卓尼县| 大庆市| 清远市| 阿勒泰市| 绥宁县| 朝阳市| 电白县| 东平县| 玛纳斯县| 沙洋县| 邻水| 米脂县| 天水市| 长岭县| 常熟市| 双辽市| 定州市| 华亭县| 开封县| 聊城市| 金山区| 乐陵市| 多伦县| 义乌市| 本溪|