码迷,mamicode.com
首页 > 编程语言 > 详细

LeetCode【7】.Reverse Integer--java实现

时间:2017-04-10 15:03:28      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:return   article   程序   ref   ica   href   problems   类型   细节   

Reverse Integer

题目要求:给定一个int 类型值,求值的反转,例如以下:

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

     简单问题一般蕴含细节的处理。思路非常easy,直接贴Java程序:

public class Solution {
    public int reverse(int x) {
        
        int head = x/10;
        int tail = x%10;
        long re = 0;
        
        while(head!=0||tail!=0)
        {
            re = re*10 + tail;
            tail = head%10;
            head = head/10;
        }
        
        re = re < Integer.MIN_VALUE? 0:re;
        re = re > Integer.MAX_VALUE?

0:re; return (int)re; } }



LeetCode【7】.Reverse Integer--java实现

标签:return   article   程序   ref   ica   href   problems   类型   细节   

原文地址:http://www.cnblogs.com/mfmdaoyou/p/6688635.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!