Leetcode 371. 两整数之和

Posted randyniu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 371. 两整数之和相关的知识,希望对你有一定的参考价值。

class Solution {
public:
    int add(int a, int b)
    {
        int jinwei = 0;
        int wujinwei = 0;
        while(b!=0)
        {
            jinwei = ((a&b)<<1);
            wujinwei = a ^ b;
            a = wujinwei;
            b = jinwei;
        }
        return wujinwei;
    }
    
    int getSum(int a, int b)
    {
        return add(a, b);
    }
};

 

以上是关于Leetcode 371. 两整数之和的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode刷题简单-371-两整数之和(一会三过)

Leetcode 371. 两整数之和

LeetCode|371. 两整数之和

LeetCode 371. 两整数之和 Sum of Two Integers

LeetCode 371. 两整数之和 Sum of Two Integers

LeetCode 371. 两整数之和(异或操作) / 639. 解码方法 II(动态规划)/ 437. 路径总和 III