您的位置:首页 > 运维架构

Leetcode 503,Add two numbers without using arithmetic operators

2016-11-12 10:26 429 查看
int add(int x, int y) {
// Iterate till there is no carry
while (y != 0) {
// carry now contains common set bits of x and y
int carry = x & y;
// Sum of bits of x and y where at least one of the bits is not set
x = x ^ y;
// Carry is shifted by one so that adding it to x gives the required sum
y = carry << 1;
}
return x;
}

//Following is recursive implementation for the same approach
int add2(int x, int y) {
if (y == 0){
return x;
}else {
return add2( x ^ y, (x & y) << 1);
}
}


refer:  http://www.geeksforgeeks.org/add-two-numbers-without-using-arithmetic-operators/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: