给定一个正整数,输出它的补数。补数是对该数的二进制表示取反。
示例 1:
输入: 5
输出: 2
解释: 5 的二进制表示为 101(没有前导零位),其补数为 010。所以你需要输出 2 。
示例 2:
输入: 1
输出: 0
解释: 1 的二进制表示为 1(没有前导零位),其补数为 0。所以你需要输出 0 。
注意:
给定的整数保证在 32 位带符号整数的范围内。
你可以假定二进制数不包含前导零位。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/number-complement
class Solution: def findComplement(self, num: int) -> int: tmp=num c=0 while tmp>0: tmp>>=1 c=(c<<1)+1 return num^c
class Solution: def findComplement(self, num: int) -> int: return 2**(len(bin(num))-2)-1-num