我们社区陆续会将顾毅(**Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。微博:@故胤道长[1]**)的 Swift 算法题题解整理为文字版以方便大家学习与阅读。
LeetCode 算法到目前我们已经更新了 28 期,我们会保持更新时间和进度(周一、周三、周五早上 9:00 发布),每期的内容不多,我们希望大家可以在上班路上阅读,长久积累会有很大提升。
不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。如果大家有建议和意见欢迎在文末留言,我们会尽力满足大家的需求。
难度水平:简单
给定两个整数,被除数 dividend
和除数 divisor
。将两数相除,要求不使用乘法、除法和 mod 运算符。
返回被除数 dividend
除以除数 divisor
得到的商。
整数除法的结果应当截去(truncate
)其小数部分,例如:truncate(8.345) = 8
以及 truncate(-2.7335) = -2
。
示例 1
输入: dividend = 10, divisor = 3
输出: 3
解释: 10/3 = truncate(3.33333..) = truncate(3) = 3
示例 2
输入: dividend = 7, divisor = -3
输出: -2
解释: 7/-3 = truncate(-2.33333..) = -2
约束条件:
32
位有符号整数。0
。32
位有符号整数,其数值范围是 [−231, 231 − 1]
。本题中,如果除法结果溢出,则返回 2^31 − 1。 class DivideTwoIntegers {
func divide(_ dividend: Int, _ divisor: Int) -> Int {
let isPositive = (dividend < 0) == (divisor < 0)
var dividend = abs(dividend), divisor = abs(divisor), count = 0
while dividend >= divisor {
var shift = 0
while dividend >= (divisor << shift) {
shift += 1
}
dividend -= divisor << (shift - 1)
count += (1 << (shift - 1))
}
return refactorCount(count, isPositive)
}
private func refactorCount(_ count: Int, _ isPositive: Bool) -> Int {
let INTMAX = 2147483647
var count = count
if isPositive {
if count > INTMAX {
count = INTMAX
}
} else {
count *= -1
}
return count
}
}
该算法题解的仓库:LeetCode-Swift[2]
点击前往 LeetCode[3] 练习
特别感谢 Swift社区 编辑部的每一位编辑,感谢大家的辛苦付出,为 Swift社区 提供优质内容,为 Swift 语言的发展贡献自己的力量,排名不分先后:张安宇@微软[4]、戴铭@快手[5]、展菲@ESP[6]、倪瑶@Trip.com[7]、杜鑫瑶@新浪[8]、韦弦@Gwell[9]、张浩@讯飞[10]、张星宇@ByteDance[11]、郭英东@便利蜂[12]
[1]
@故胤道长: https://m.weibo.cn/u/1827884772
[2]
LeetCode-Swift: https://github.com/soapyigu/LeetCode-Swift
[3]
LeetCode: https://leetcode.com/problems/divide-two-integers/
[4]
张安宇: https://blog.csdn.net/mobanchengshuang
[5]
戴铭: https://ming1016.github.io
[6]
展菲: https://github.com/fanbaoying
[7]
倪瑶: https://github.com/niyaoyao
[8]
杜鑫瑶: https://weibo.com/u/3878455011
[9]
韦弦: https://www.jianshu.com/u/855d6ea2b3d1
[10]
张浩: https://github.com/zhanghao19920218
[11]
张星宇: https://github.com/bestswifter
[12]
郭英东: https://github.com/EmingK