自己的:
public static int calcCost(int A,int B){
int ans = 1;
int temp = A ^ B;
while(temp != 1){
if(temp % 2 == 1) ans++;
temp = temp / 2;
} return ans;
}
课本上的很精彩:
到时候回去看看。
自己的:
public static int calcCost(int A,int B){
int ans = 1;
int temp = A ^ B;
while(temp != 1){
if(temp % 2 == 1) ans++;
temp = temp / 2;
} return ans;
}
课本上的很精彩:
到时候回去看看。