您的位置:首页 > 其它

Leetcode--Add to List 371. Sum of Two Integers

2017-08-02 10:34 405 查看

题目

Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.

Example:

Given a = 1 and b = 2, return 3.

不使用+ - 实现加法

思路

位运算来实现

代码

递归版本

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


非递归版

class Solution {
public:
int getSum(int a, int b) {
while(b)  {
int carry = a & b;
a = a ^ b;
b = carry << 1;
}
return a;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: