LeetCode刷题--476. Number Complement
题目及理解
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:
1 | Input: 5 |
Example 2:
1 | Input: 1 |
理解
水题,就是按位取反
代码
1 | class Solution { |
其他解法
看了Discuss里面的解法,还是有很多骚操作的大神的.这里贴出一个来看看.
链接
1 | class Solution { |
理解
先让mask全部取1,然后对num取&操作,使得在对应前导0的地方全部置1,剩下的位全部是0,然后再对2个数进行&操作,就是取反了.