5.5---整数A转成整数B(CC150)

自己的:

    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;
    }
View Code

课本上的很精彩:

到时候回去看看。

posted @ 2015-12-24 17:23  创业-李春跃-增长黑客  阅读(158)  评论(0编辑  收藏  举报