Number Complement

Problem

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

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

Solution1 (My Solution)
class Solution {
public:
    int findComplement(int num) {
        std::bitset<32> bits(num);
        int endPos = ignoreLeadingZero(bits);
        for (int i = 0; i <= endPos; i++){
             bits[i] = !bits[i];    
        }
        
        return int(bits.to_ulong());
    }
    
private:
    int ignoreLeadingZero(bitset<32>& bits){
        size_t bitsLength = bits.size();
        for (int i = bitsLength - 1; i >= 0; i--){
            if (bits[i] == 0) continue;
            else return i;
        }
    }
};
Solution2
class Solution {
public:
    int findComplement(int num) {
        unsigned mask = ~0;
        while (num & mask) mask <<= 1;
        return ~mask & ~num;
    }
};
  • Solution2 通过求其掩码的方式,基于二进制运算,速度较快。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 今天去看了孟京辉的话剧——《两只狗的生活意见》,一台只有两个演员以及两个沉默的伴奏的话剧,完全不失现场感,相声开场...
    Nesier无恙阅读 1,268评论 0 51
  • 今天朋友问:如果可以选择,你将选择怎样一种生活? 我默然:富与贫,贵与贱,强与弱…… 其实,我们每天都在选择我们所...
    武瑞丁家长阅读 159评论 0 3
  • 第一次打心眼里折服于文字是看了一篇孔云峰写的文章,一篇关于卡瓦格博的文章。 壮丽魅惑的梅里雪山,炙热的个人英雄主义...
    岁月一声笑阅读 1,245评论 0 2