码迷,mamicode.com
首页 > 其他好文 > 详细

371. Sum of Two Integers

时间:2018-06-06 23:39:54      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:get   net   style   and   code   ref   可见   运算   .com   

不能用加减法,想到用位运算解题。

本题思路可见 http://www.cnblogs.com/grandyang/p/5451942.html

关于位运算部分总结 可见 https://blog.csdn.net/fly_yr/article/details/51144272

class Solution {
public:
    int getSum(int a, int b) {
        int sum=a;
        while(b){
            sum = a^b;
            int carry= (a&b)<<1;
            a = sum;
            b = carry;
        }
        return sum;
    }
};

 

371. Sum of Two Integers

标签:get   net   style   and   code   ref   可见   运算   .com   

原文地址:https://www.cnblogs.com/hankunyan/p/9147627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!