zoukankan      html  css  js  c++  java
  • Reverse Integer

    Reverse digits of an integer.

    Example1: x = 123, return 321
    Example2: x = -123, return -321

    click to show spoilers.

    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.

     1 class Solution {
     2 public:
     3     int reverse(int x) {
     4         long long res = 0;
     5         while (x)
     6         {
     7             res = res * 10 + x % 10;
     8             if (res > INT_MAX || res < INT_MIN) return 0;
     9             x /= 10;
    10         }
    11         return (int)res;
    12     }
    13 };
     
  • 相关阅读:
    Socket listen 简要分析
    Socket connect 等简要分析
    HIVE函数大全
    元数据管理
    flume
    shell编程
    数据仓库集锦
    数据库知识
    hive sql 转化mapreduce原理
    Hadoop 学习笔记
  • 原文地址:https://www.cnblogs.com/fenshen371/p/4908189.html
Copyright © 2011-2022 走看看