问题

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3838 访问。

给定一个 32 位有符号整数,将整数中的数字进行反转。

输入: 123

输出: 321

输入: -123

输出: -321

输入: 120

输出: 21

注意:

假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−231,  231 − 1]。根据这个假设,如果反转后的整数溢出,则返回 0。


Given a 32-bit signed integer, reverse digits of an integer.

Input: 123

Output: 321

Input: -123

Output: -321

Input: 120

Output: 21

Note:

Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231,  231 − 1]. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.


示例

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3838 访问。

public class Program {

    private const string NEGATIVE_CHAR = "-";

    public static void Main(string[] args) {
var x = 123; var res = Reverse(x);
Console.WriteLine(res); x = -567;
res = Reverse2(x);
Console.WriteLine(res); Console.ReadKey();
} private static int Reverse(int x) {
int.TryParse(ReverseString(x.ToString()), out int res);
return res;
} private static string ReverseString(string text) {
var negative = text.StartsWith(NEGATIVE_CHAR);
var arr = text.Replace(NEGATIVE_CHAR, "").ToCharArray();
Array.Reverse(arr);
return (negative ? NEGATIVE_CHAR : "") + new string(arr);
} private static int Reverse2(int x) {
var res = 0L;
while(x != 0) {
res = res * 10 + x % 10;
x = x / 10;
}
if(res > int.MaxValue || res < int.MinValue) {
res = 0;
}
return (int)res;
} }

以上给出2种算法实现,以下是这个案例的输出结果:

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3838 访问。

321
-765

分析:

显而易见,以上2种算法的时间复杂度均为: 

最新文章

  1. ReactJs 报错 Element type is invalid: expected a string (from built-in components) or a class/function (for composite components) but got: undefined. Check the render method of `Me`.
  2. BZOJ1798[Ahoi2009]Seq 维护序列seq 题解
  3. 第44讲:Scala中View Bounds代码实战及其在Spark中的应用源码解析
  4. 36个炫丽的html5 canvas展示
  5. fourinone分布式缓存研究和Redis分布式缓存研究
  6. (转)hadoop三个配置文件的参数含义说明
  7. Java基础—String类小结
  8. SQL SERVER 锁资源问题
  9. rtx tiny os
  10. Python中的Numpy入门教程
  11. 【ANT】输入中文格式为乱码
  12. 20135323符运锦----LINUX第三次实践:程序破解
  13. python-面向对象-03_面向对象基础语法
  14. python 连接 Oracle 乱码问题(cx_Oracle)
  15. WaitForMultipleObjects
  16. Ubuntu 16.04 编译安装 ss
  17. cocos2d - 翻转两个Sprite
  18. 多张报表导出到一个多sheet页excel
  19. KMP算法解释
  20. WePY 在手机充值小程序中的应用与实践

热门文章

  1. 没内鬼,来点干货!volatile和synchronized
  2. 集训作业 洛谷P1101 单词方阵
  3. OA系统从选型到实施完整攻略
  4. The Prices
  5. Linux文件搜索
  6. SQL数据多条转单条(CONCAT_WS)
  7. Python如何向SQLServer存储二进制图片
  8. jq转盘抽奖
  9. chrome浏览器hover时文字抖动bug
  10. 萌新学渗透系列之Hack The Box_Legacy