力扣(LeetCode)476. 数字的补数

Posted lick

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了力扣(LeetCode)476. 数字的补数相关的知识,希望对你有一定的参考价值。

给定一个正整数,输出它的补数。补数是对该数的二进制表示取反。

注意:

给定的整数保证在32位带符号整数的范围内。
你可以假定二进制数不包含前导零位。
示例 1:

输入: 5
输出: 2
解释: 5的二进制表示为101(没有前导零位),其补数为010。所以你需要输出2。

示例 2:

输入: 1
输出: 0
解释: 1的二进制表示为1(没有前导零位),其补数为0。所以你需要输出0。

Java版

class Solution {
    public int findComplement(int num) {
        int res = 0;
        int time = 0;
        while(num != 0) {
            int remain = num % 2;
            res += (1-remain)*Math.pow(2,time++);
            num = num/2;
        }
        return res;
    }
}

运行结果

以上是关于力扣(LeetCode)476. 数字的补数的主要内容,如果未能解决你的问题,请参考以下文章

leetcode每日打卡--476. 数字的补数

LeetCode 476 数字的补数[异或] HERODING的LeetCode之路

Leetcode 476.数字的补数

Leetcode刷题100天—476. 数字的补数—day70

Leetcode刷题100天—476. 数字的补数—day70

476. 数字的补数模拟