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.
方法一:用位运算模拟加法 思路1:- 异或又被称其为“模2加法“
- 设置变量recipe模拟进位数字,模拟加法的实现过程
- a^b,求得结果
- a&b,求得进位
- 相加
public class Solution {
public int getSum(int a, int b) {
while (b != 0) {
int c = a & b; //carry
a ^= b; //add
b = c << 1;
}
return a;
}
}
更多的leetcode的经典算法,查看我的leetcode专栏
热门评论
抱歉,我看错了。。。
r recipe c a b
0 1 0 (3) (10)
----------------------
1 2 0 1 5
1 4 1 0 2
5 8 0 0 1
(13) 16 0 0 0
方法一我试了下好像不行,要把第6行
改为这个才行: