29. Divide Two Integers

复制代码
package LeetCode_29

/**
 * 29. Divide Two Integers
 * https://leetcode.com/problems/divide-two-integers/
 *
 * 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, which means losing its fractional part.
For example, truncate(8.345) = 8 and truncate(-2.7335) = -2.

Note:
Assume we are dealing with an environment that could only store integers within the 32-bit signed integer range: [−2^31,  2^31 − 1].
For this problem, assume that your function returns 2^31 − 1 when the division result overflows.

Example 1:
Input: dividend = 10, divisor = 3
Output: 3
Explanation: 10/3 = truncate(3.33333..) = 3.

Example 2:
Input: dividend = 7, divisor = -3
Output: -2
Explanation: 7/-3 = truncate(-2.33333..) = -2.

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

Example 4:
Input: dividend = 1, divisor = 1
Output: 1

Constraints:
1. -2^31 <= dividend, divisor <= 2^31 - 1
2. divisor != 0
 * */
class Solution {
    /*
    * solution: reducing dividend, Time:O(dividend), Space:O(1)
    * */
    fun divide(dividend: Int, divisor: Int): Int {
        //conner case
        if (dividend == 0) {
            return 0
        }
        if (dividend != divisor && divisor == Int.MIN_VALUE) {
            return 0
        }
        if (dividend == divisor) {
            return 1
        }
        if (dividend == Int.MIN_VALUE && divisor == -1) {
            return Int.MAX_VALUE
        }
        //checking position or negative
        var sign = 1
        if (dividend < 0 && divisor > 0 || dividend > 0 && divisor < 0) {
            sign = -1
        }
        var dividendAbs = Math.abs(dividend * 1L)
        var divisorAbs = Math.abs(divisor * 1L)
        var result = 0
        while (dividendAbs >= divisorAbs) {
            dividendAbs -= divisorAbs
            result++
        }
        return if (sign==-1) -result else result
    }
}
复制代码

 

posted @   johnny_zhao  阅读(87)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示