标签:title wrap esc result mat 时间 abs 倍增 思路
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 1:
Input: dividend = 0, divisor = 1
Output: 0
Example 2:
Input: dividend = 100, divisor = 9 Output: 11
思路:
基本思路是利用减法, 看看被除数可以减去多少次除数.
使用倍增的思想优化, 可以将减法的次数优化到对数时间复杂度.
我们将除数左移一位(或者让它加上自己), 即得到了二倍的除数, 这时一次减法相当于减去了2个除数. 不断倍增, 时间效率很优秀.
与此同时还需要一个变量记录此时的除数是最初的除数的多少倍, 每次减法后都加到结果上即可.
public class Solution {
/**
* @param dividend the dividend
* @param divisor the divisor
* @return the result
*/
public int divide(int dividend, int divisor) {
if (divisor == 0) {
return dividend >= 0? Integer.MAX_VALUE : Integer.MIN_VALUE;
}
if (dividend == 0) {
return 0;
}
if (dividend == Integer.MIN_VALUE && divisor == -1) {
return Integer.MAX_VALUE;
}
boolean isNegative = (dividend < 0 && divisor > 0) ||
(dividend > 0 && divisor < 0);
long a = Math.abs((long)dividend);
long b = Math.abs((long)divisor);
int result = 0;
while (a >= b) {
int shift = 0;
while (a >= (b << shift)) {
shift++;
}
a -= b << (shift - 1);
result += 1 << (shift - 1);
}
return isNegative? -result: result;
}
}
标签:title wrap esc result mat 时间 abs 倍增 思路
原文地址:https://www.cnblogs.com/FLAGyuri/p/12077879.html