将整数A转换为B

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

样例

如把31转换为14,需要改变2个bit位。

(31)10=(11111)2

(14)10=(01110)2

挑战

你能想出几种方法?


****************************************

异或 相异为真

class Solution {
    /**
     *@param a, b: Two integer
     *return: An integer
     */
    public static int bitSwapRequired(int a, int b) {
        // write your code here
        int c = a ^ b;
		String s = Integer.toBinaryString(c);
		int sum = 0;
		for(int i =0;i<s.length();i++)
			if(s.charAt(i) == '1')
				sum++;
		return sum;
    }
};


你可能感兴趣的:(面试,lintcode,数字与二进制)