Lintcode181 Flip Bits solution 题解

【题目描述】

Say you have an array for which the ith element is the price of a given stock on day i.

Notice

Both and are 32-bit integers.

如果要将整数A转换为B,需要改变多少个bit位?

【注】:n和m都是32位整数。

【题目链接】

www.lintcode.com/en/problem/flip-bits/

【题目解析】

此题可使用异或操作,c = a ^ b,但是要注意分情况。

①若a,b同号时,直接右移统计1的个数即可;

②若当a,b异号时,则要求出c的源码,统计源码减1中0的个数。这次不是统计1,而是统计0了。

另外还需要注意的是,因为在补码的时候,是在原码的基础上取反,然后加了一个1,为了跟补码的情况保持一致,必须讲原码减去一个1,这样0的个数才是原补码1的个数。

【参考答案】

www.jiuzhang.com/solutions/flip-bits/

你可能感兴趣的:(Lintcode181 Flip Bits solution 题解)