首页 > 学院 > 开发设计 > 正文

LeetCode :Number Complement

2019-11-06 09:24:04
字体:
来源:转载
供稿:网友

2017年2月27日      星期一

   经历了一个浑浑噩噩的周末,终于到了星期一。昨天还去了中国美术学院(象山校区),可以说是被艺术的氛围熏陶了一下!去过的艺术院校里,四川美术学院给我的感觉,既有过往的建筑风格,又有很现代的建筑,大家都不拘泥于形式;而中国美术学院,十分学术派,可以说把中国古代的结构、工艺发挥的淋漓尽致。很羡慕他们能在这样的地方学习!

    好啦,开始今天的题目:

      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.

------------------------------------------------------------我是分割线------------------------------------------------------------------

由题目可知:对一个数二进制取反,输出取反后的整数。同样可以通过位运算的方式计算。

                        在存储过程中,一个整数前面可能会有n个0,不能直接通过~取反。所以方案就是从左到右找到的第一位1,开始与1异或

                        代码如下:

class Solution {public:    int findComplement(int num) {        bool start = false;        for (int i = 31; i >= 0; --i) {            if (num & (1 << i)) start = true;            if (start) num ^= (1 << i);        }        return num;    }};


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表