zoukankan      html  css  js  c++  java
  • LeetCode #7 Reverse Integer

    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

  • 相关阅读:
    进阶新的阶段--LCD
    UART的调试
    s5pv210的定时器
    s5pv210的外部中断
    按键的轮询
    点亮指路灯
    队列里面的二级指针
    链表实现学生成绩管理系统
    链表基本功能
    new的用法
  • 原文地址:https://www.cnblogs.com/silence-cnblogs/p/6845686.html
Copyright © 2011-2022 走看看