Leetcode

Leetcode 476. Number Complement

2018-09-12  本文已影响2人  SnailTyan

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

1. Description

Number Complement

2. Solution

class Solution {
public:
    int findComplement(int num) {
        int result = 0;
        stack<int> 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;
    }
};
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/
上一篇下一篇

猜你喜欢

热点阅读