Leetcode 476. Number Complement

文章作者:Tyan
博客:noahsnail.com  |  CSDN  | 

1. Description

Number Complement

2. Solution

  • Version 1
class Solution {
public:
    int findComplement(int num) {
        int result = 0;
        stack s;
        while(num) {
            int bit = num & 1;
            num >>= 1;
            s.push(bit);
        }
        while(!s.empty()) {
            result <<= 1;
            int bit = s.top();
            s.pop();
            result |= (bit ^ 1);
        }
        return result;
    }
};
  • Version 2
class Solution {
public:
    int findComplement(int num) {
        int mask = ~0;
        while (num & mask) {
            mask <<= 1;
        }
        return ~mask & ~num;
    }
};

Reference

  1. https://leetcode.com/problems/number-complement/description/

你可能感兴趣的:(Leetcode 476. Number Complement)