第18题 比较两个整数比特位不同的数量

此题来自 cracking the coding interview

write a function to determine the number of of bits required to convert integer A to integer B

input: 31, 14

output: 2





关于位运算操作,经常会用到异或,xor



你可能感兴趣的:(比较)