首页 > 其他 > 详细

LeetCode:Reverse Integer

时间:2014-05-24 01:37:32      阅读:439      评论:0      收藏:0      [点我收藏+]

Reverse digits of an integer.

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

这道题应该不用详细说了。比较简单。唯一的是要注意特殊值0.


public class Solution {
     public int reverse(int x) {
        StringBuilder sb = new StringBuilder();
        if(x==0)return x;
        else if(x<0)
        {
            sb.append(‘-‘);
        }
        x = Math.abs(x);
        while(x != 0)
        {
            sb.append(x%10);
            x = x/10;
        }
        String result = sb.toString();
        return Integer.parseInt(result);
    }
}

LeetCode:Reverse Integer,布布扣,bubuko.com

LeetCode:Reverse Integer

原文:http://www.cnblogs.com/jessiading/p/3736715.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!