Divide Two Integers

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

If it will overflow(exceeding 32-bit signed integer representation range), return 2147483647

The integer division should truncate toward zero.

Example

Example 1:

Input: dividend = 0, divisor = 1
Output: 0

Example 2:

Input: dividend = 100, divisor = 9
Output: 11

思路:基本思路是利用减法, 看看被除数可以减去多少次除数. 使用倍增的思想优化

class Solution {
    public int divide(int dividend, int divisor) {
        if(dividend == Integer.MIN_VALUE && divisor == -1) {
            return Integer.MAX_VALUE;
        }
        int a = Math.abs(dividend);
        int b = Math.abs(divisor);
        int res = 0;
        while(a - b >= 0) {
            int temp = b;
            int count = 1; // 注意count是从1开始的;否则shift全是0;
            while(a - (temp << 1) >= 0) {
                temp = temp << 1;
                count = count << 1;
            }
            a -= temp;
            res += count;
        }
        return dividend > 0 == divisor > 0 ? res : -res;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值