LeetCode #7 Reverse Integer
Question
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Have you thought about this?
Here are some good questions to ask before coding. Bonus points for you if you have already thought through this!
If the integer's last digit is 0, what should the output be? ie, cases such as 10, 100.
Did you notice that the reversed integer might overflow? Assume the input is a 32-bit integer, then the reverse of 1000000003 overflows. How should you handle such cases?
For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
Note:
The input is assumed to be a 32-bit signed integer. Your function should return 0 when the reversed integer overflows.
Solution
Approach #1
class Solution {
func reverse(_ x: Int) -> Int {
let max = Int(Int32.max)
let positive = x >= 0
var y = positive ? x : -x
var result = 0
while y > 0 {
let remainder = y % 10
if max / 10 < result || (max / 10 == result && max % 10 < remainder) {
return 0
}
result = result * 10 + remainder
y /= 10
}
return positive ? result : -result
}
}
Time complexity: O(log(x)).
Space complexity: O(1).
转载请注明出处:http://www.cnblogs.com/silence-cnblogs/p/6845686.html