首页 > 其他 > 详细

LeetCode 371 Sum of Two Integers

时间:2016-08-08 23:55:52      阅读:235      评论:0      收藏:0      [点我收藏+]

This problem is a little confusing to me at first. But after I read some articles online, I got to know that it requires bitwise operations.

So basically, we need to use "^" to calculate the sum of two integers, and "&" << 1 to calculate the carry.

Here is recursive way.

 1 public class Solution {
 2     public int GetSum(int a, int b) {
 3         if (b == 0) return a;
 4         
 5         int sum = a ^ b;
 6         int carry = (a & b) << 1;
 7         
 8         return GetSum(sum, carry);
 9     }
10 }

And here is iterative way.

public class Solution {
    public int GetSum(int a, int b) {
        while (b != 0) 
        {
            int carry = (a & b);
            a = a ^ b;
            b = carry << 1;
        }
        return a;
    }
}

注意这个while循环里面,需要我们先计算int carry = (a & b),不然会报错。

LeetCode 371 Sum of Two Integers

原文:http://www.cnblogs.com/wenchan/p/5751275.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!