LintCode-A+B 비트 조작 시 뮬 레이 션 덧셈

원본 링크:http://www.cnblogs.com/resonantPineapple/p/4755398.html
class Solution {
public:
    /*
     * @param a: The first integer
     * @param b: The second integer
     * @return: The sum of a and b
     */
    int aplusb(int a, int b) {
        // write your code here, try to do it without arithmetic operators.
        if(a==0)return b;  
        if(b==0)return a;  
        int x1 = a^b;  
        int x2 = (a&b)<<1;  
        return aplusb(x1,x2);
    }
};

두 분 을 합치 면 네 가지 상황 이 있 습 니 다.
1. 1 + 1 = 10;
2. 1 + 0 = 01;
3. 0 + 1 = 01;
4. 0 + 0 = 00;
첫 번 째 상황,즉 진 위 를 가지 고(a&b)<1 로 해결 합 니 다.
두 번 째 세 번 째 상황 은 a^b 로 해결 합 니 다.
 
다음으로 전송:https://www.cnblogs.com/resonantPineapple/p/4755398.html

좋은 웹페이지 즐겨찾기