[leetcode Q29] Divide Two Integers

1. 题目

Divide two integers without using multiplication, division and mod operator.

If it is overflow, return MAX_INT.

要求不使用乘除法实现两个整数相除运算。

2. 思路

不使用乘法除法,要想快数得到结果就只能考虑位运算。本题主要考察位运算。

  • 被除数减去一次除数,结果 + 1
  • 被除数减去 2 x 除数,结果 + 2
  • 被除数减去 4 x 除数,结果 + 4
  • ……

需要注意整数溢出

如输入:

-2147483648
1
-2147483648
-1

3. 实现

class Solution {
public:
    int divide(int dividend, int divisor) {
           // Note: The Solution object is instantiated only once.  
            if (divisor == 1)
                return dividend;
            long long a = abs((double)dividend);  
            long long b = abs((double)divisor);  
            long long res = 0;  
            while(a >= b)  
            {  
                long long c = b;  
                for(int i = 0; a >= c; i++, c <<=1)  
                {  
                    a -= c;  
                    res += 1<<i;  
                }  
            }

            if (res == 0x80000000)
                return 2147483647;
            else
                return ((dividend ^ divisor) >> 31) ? (-res) : (res);  
        }  
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值