题目:
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:
Input: 5
Output: 2
Explanation: The binary representation of 5 is 101 (no leading zero bits), and its complement is 010. So you need to output 2.
代码:
class Solution {
public:
int findComplement(int num) {
int x = 0, p = 0;
while(num){
if(num%2==0) x |= (1 << p);
++p;
num/=2;
}
return x;
}
};
本文深入探讨了如何求一个正整数的补码,详细解释了通过翻转其二进制表示位的方法来实现。文章提供了具体的代码示例,包括一个C++类的定义和成员函数,用于计算并返回给定整数的补码。
254

被折叠的 条评论
为什么被折叠?



