Problem
Given two integers dividend and divisor, divide two integers without using multiplication, division and mod operator.
Return the quotient after dividing dividend by divisor.
The integer division should truncate toward zero.
Example 1: Input: dividend = 10, divisor = 3 Output: 3 Example 2: Input: dividend = 7, divisor = -3 Output: -2
Note:
Both dividend and divisor will be 32-bit signed integers.
The divisor will never be 0.
Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [?2^31, 2^31 ? 1]. For the purpose of this problem, assume that your function returns 2^31 ? 1 when the division result overflows.
class Solution { public int divide(int dividend, int divisor) { int sign = 1; if (dividend > 0 && divisor < 0 || (dividend < 0 && divisor > 0)) sign = -1; long dd = Math.abs((long) dividend); long ds = Math.abs((long) divisor); if (ds == 0) return Integer.MAX_VALUE; if (dd == 0 || dd < ds) return 0; long quotient = divideHelper(dd, ds); int res; if (quotient > Integer.MAX_VALUE) { res = sign == 1 ? Integer.MAX_VALUE : Integer.MIN_VALUE; } else { res = (int) (sign * quotient); } return res; } private long divideHelper(long dd, long ds) { if (dd < ds) return 0; long sum = ds; long count = 1; while (sum <= dd - sum) { sum += sum; count += count; } return count + divideHelper(dd-sum, ds); } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/71866.html
摘要:題目解析用加減法實現除法用減法,每次累加被減部分,累加商,以一個固定的倍數遞增坑注意循環的跳出便捷,的情況要注意。應用累加思想,可以用在提速上,效率提高如果,則是負的,則是正的 題目解析: 用加減法實現除法 用減法,每次累加被減部分,累加商, 以一個固定的倍數遞增 坑: 注意 while循環的跳出便捷,= 的情況要注意。應用:累加思想,可以用在提速上,效率提高 Given two ...
摘要:題目要求在不使用乘法,除法和求余操作的情況下,計算兩個整數相除的結果。如果溢出了,則返回最大值。在這里核心思路是使用逆向二分法和遞歸的思路來進行計算。在這里我們使用取值范圍更廣的來處理數值溢出的場景。 題目要求 Divide two integers without using multiplication, division and mod operator. If it is o...
摘要:很容易想到,我們每次用被除數減去除數,進行減法的次數就是最終結果。這道題的采取了一種類似二分查找的思想。除了這些,這道題還要注意一些邊界情況的判斷,例如除數或被除數為,值溢出等。 題目詳情 Divide two integers without using multiplication, division and mod operator.If it is overflow, retu...
摘要:上篇文章寫了以我自己的思路來解決這個問題,但是運行時間過長,看了上的高效寫法是使用位運算的解法,當初我自己寫這個問題是也想到了可以用位運算快一點,但是因為基礎差,對位運算的掌握不牢靠,還是選擇使用了減法的思路,在此將上高效解法做一個思路分析 上篇文章寫了以我自己的思路來解決這個問題,但是運行時間過長,看了leetcode 上的高效寫法是使用位運算的解法,當初我自己寫這個問題是也想到了可...
摘要:位操作法復雜度時間空間思路我們設想,本來應該的得到余,那么如果我們把忽略余數后分解一下,,也就是,也就是把商分解為,所以商的二進制是。我們可以不斷的將乘的一次方,二次方,等等,直到找到最大那個次方,在這里是的四次方。 Divide Two Integers Divide two integers without using multiplication, division and m...
閱讀 3027·2021-11-02 14:40
閱讀 844·2019-08-30 15:53
閱讀 1265·2019-08-30 15:53
閱讀 3259·2019-08-30 13:53
閱讀 3305·2019-08-29 12:50
閱讀 1132·2019-08-26 13:49
閱讀 1864·2019-08-26 12:20
閱讀 3660·2019-08-26 11:33