[LeetCode][Java] Palindrome Number

题目:

Determine whether an integer is a palindrome. Do this without extra space.

Some
hints:

Could negative integers be palindromes? (ie, -1)

If you are thinking of converting the integer to string, note the restriction of using extra space.

You could also try reversing an integer. However, if you have solved the problem "Reverse Integer", you know that the reversed integer might overflow. How would you handle such case?

There is a more generic way of solving this problem.

题意:

判断一个整数是否为回文数。不要利用额外的空间。

一些提示:负数不是回文数;如果考虑将整数转化为字符串,注意空间的限制;如果尝试转置这个整数,要注意溢出的问题。

算法分析:

这里利用题目《

Reverse Integer

》,将给定的整数转置,然后判断转置后的整数和原整数是否相等,如果相等就是回文数。这里注意一些特殊条件的判断。

AC代码:

public class Solution
{
	private  int i;
	private  int labelnum;
	private  long finalnum;
	private  int finalnnum;
	private  int checkresult;
	private  int label;
    private int y;
    private boolean blabel;
    public boolean isPalindrome(int x)
    {
          y=reverse(x);//将原整数进行转置
          if (y==0)
          {
        	  if(x==y) blabel=true;//转制前后都是0
        	  else blabel=false;//原整数不是0,转置后变为0,表明出现溢出
          }
          else if(x<0)//负数不是回文数
            blabel=false;
          else if(x==y)
            blabel=true;
          else
            blabel=false;
          return blabel;
    }
    public int reverse(int x)
    {
    	String s1=Integer.toString(x);
    	if(s1.charAt(0)=='-')
    	{
    		String s2="-";
    		String finals2="-";
    		String Judges2="";
    		long num1=0L;
    		for(i=s1.length()-1;i>=1;i--) s2+=s1.charAt(i);
    		for(i=1;i<s2.length();i++)
    		{
    			if(s2.charAt(i)!='0')
    			{
    				labelnum=i;
    				break;
    			}

    		}
    		for(i=labelnum;i<s2.length();i++)
    		{
    			finals2+=s2.charAt(i);
    		}
    		label=checkstring(finals2);//检查是否存在溢出问题,label=1表明没有溢出;label=0表明产生溢出
    		if(label==1)
    		{
    			finalnum=Integer.parseInt(finals2);
    		}
    		else
    		{
    			finalnum=0;
    		}

    	}
    	else
    	{
    		String s2="";
    		String finals2="";
    		String Judges2="";
    		long num1=0L;
    		for(i=s1.length()-1;i>=0;i--) s2+=s1.charAt(i);
    		for(i=0;i<s2.length();i++)
    		{
    			if(s2.charAt(i)!='0')
    			{
    				labelnum=i;
    				break;
    			}
    		}
    		for(i=labelnum;i<s2.length();i++)
    		{
    			finals2+=s2.charAt(i);
    		}
    		label=checkstring(finals2);//检查是否存在溢出问题,label=1表明没有溢出;label=0表明产生溢出
    		if(label==1)
    		{
    			finalnum=Integer.parseInt(finals2);
    		}
    		else{
    			finalnum=0;
    		}

    	}

		return (int) finalnum;
    }

    private  int checkstring(String string)
    {
        checkresult=1;
    	/* 异常情况1:字符串为null */
        if (string == null) checkresult=0;
        int length = string.length(), offset = 0;
        /* 异常情况2:字符串长度为0 */
        if (length == 0)  checkresult=0;
        boolean negative = string.charAt(offset) == '-';
        /* 异常情况3:字符串为'-' */
        if (negative && ++offset == length)  checkresult=0;
        int result = 0;
    	char[] temp = string.toCharArray();
        while (offset < length)
        {
          char digit = temp[offset++];
          if (digit <= '9' && digit >= '0')
          {
            int currentDigit = digit - '0';
            /*
             * 异常情况4:已经等于Integer.MAX_VALUE / 10,判断要添加的最后一位的情况:
             * 如果是负数的话,最后一位最大是8 如果是正数的话最后一位最大是7
             * Int 范围:四个字节,-2147483648~2147483647
             */
            if (result == Integer.MAX_VALUE / 10)
            {
	              if ((negative == false && currentDigit > 7)
	                  || (negative && currentDigit > 8))
	              {
	            	  checkresult=0;
	              }
	              /*
	               * 异常情况5:已经大于Integer.MAX_VALUE / 10
	               * 无论最后一位是什么都会超过Integer.MAX_VALUE
	               */
	            }
	            else if (result > Integer.MAX_VALUE / 10)
	            {
	            	checkresult=0;
	            }
             int next = result * 10 + currentDigit;
             result = next;
           }
        }
		return checkresult;
    }
}

别人家的代码:

public class Solution {
    public boolean isPalindrome(int x) {
        if(x<0) return false;//负数不是回文
        if(x==0) return true;
        //对数值进行翻转,回文翻转之后还等于原来的数
        int reverseNum=0;
        int num=x;
        while(num>0)
        {
            int modnum=num%10;
            //考虑翻转会溢出的情况
            if((reverseNum>Integer.MAX_VALUE/10)||((reverseNum==Integer.MAX_VALUE/10)&&(modnum>Integer.MAX_VALUE%10)))
                return false;
            reverseNum=reverseNum*10+modnum;
            num=num/10;
        }
        if(reverseNum==x)
            return true;
        else
            return false;
    }
}

版权声明:本文为博主原创文章,转载注明出处

时间: 2024-11-03 05:40:11

[LeetCode][Java] Palindrome Number的相关文章

LeetCode:Palindrome Number - 回文数

1.题目名称 Palindrome Number(回文数) 2.题目地址 https://leetcode.com/problems/palindrome-number 3.题目内容 英文:Determine whether an integer is a palindrome. Do this without extra space. 中文:确认一个整数是否是回文数 4.解题方法1 将数字翻转后判断与原数字是否相等,可以参考LeetCode第7题(Reverse Integer)的解题思路.J

Leetcode 数 Palindrome Number

本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie Palindrome Number Total Accepted: 12165 Total Submissions: 41736 Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative integ

LeetCode 009 Palindrome Number

[题目] Determine whether an integer is a palindrome. Do this without extra space. [题意] 题意判断一个整数是否是回文数 注意一下几点: 1. 不能用额外的空间 2. 负数不是回文数 [思路1] 依次比较首位值,需要注意处理类似1002001这样的数,当比较完首位值之后余下的数变成200, 2之前的两个0会自动清除. [代码] class Solution { public: int _size(int x){ int

【LeetCode】Palindrome Number

Palindrome Number Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to string, note the restri

[LeetCode] 009. Palindrome Number (Easy) (C++/Java/Python)

索引:[LeetCode] Leetcode 题解索引 (C++/Java/Python/Sql) Github: https://github.com/illuz/leetcode 009.Palindrome_Number (Easy) 链接: 题目:https://oj.leetcode.com/problems/palindrome-number/ 代码(github):https://github.com/illuz/leetcode 题意: 判断一个数是否是回文数. 分析: 按自己想

Java for LeetCode 009 Palindrome Number

Determine whether an integer is a palindrome. Do this without extra space. 解题思路: 由于题目中给定不能使用额外空间开销,因此不能转为String类型,我们需要一位一位处理. Java代码如下: static public boolean isPalindrome(int x) { if (x < 0) return false; int temp = x; int beginIndex = 0, endIndex =

LeetCode 009 Palindrome Number - Java

Determine whether an integer is a palindrome. Do this without extra space. 定位:简单题 题目要求判断给出的数字是否是回文数,并且要求不适用额外空间.我们不能使用其他数据类型过度处理,那从个位开始计算,每提高计算一位将原先的值*10+新值,结束后判断是否与原值相同即可. Java实现: 1 public class Solution { 2 public boolean isPalindrome(int x) { 3 in

[LeetCode][9]Palindrome Number解析与StringBuilder.reverse()源码实现 -Java实现

Q: Determine whether an integer is a palindrome. Do this without extra space. A: 这个题目说实话,我是后半句没有看懂的...这个without extra space不知道是不是单纯的只是不让用多余空间,如果我理解错了,希望有人能教我一下.. 我们之前解过一个回文的题目回文,感觉这题是不是简单了点,上次用的解法直接套就可以了.就是可能出现了多余的空间.考虑到不能使用多余的空间来操作我之前分析了一个回文的特性: 1.回

Java [leetcode 9] Palindrome Number

问题描述: Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to string, note the restriction of using extra space. You coul