LeetCode【9】. Palindrome Number --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.

       判断一个int是否为回文。

一、思路1:

首先获取int长度,再从两头往中间扫描,将对称的元素成对进行比较。代码如下,但是Time
Limit Exceeded超时了。

public class Solution {
    public boolean isPalindrome(int x) {
        int xl;

        if(x<0)                       //1.小于0
            return false;

        for(xl = 1;x/(xl*10)>0;xl++)  //2. 得到x的长度
           ;

        if(xl==1)                     //3.x为个位数时直接返回(因为后续处理个位数时会使分母为0,故单独处理)
          return true;

        for(int i=2;(xl/2)>=i;i++)
        {
            if(x%(i*10)/((i-1)*10) == x%((xl-i+1)*10)/((xl-i)*10))  //4.分别取对称的两个数进行比较
            {

            }else
               return false;
        }
        return true;

    }
}

二、思路2

复制将给定int从低位往高位开始,复制为另外一个高位至低位,得到一个给定值的反序。再比较两者是否相等。意思就是拿个镜子,然后照出镜子里跟自己左右相反的自己。如果是自己是完全对称的(这里是回文),那例外两个看一起一定一模一样的。

Java代码如下:

public class Solution {
    public boolean isPalindrome(int x) {
        int t=x;
        int re=0;  

        if(x<0)             //1. 负数无法为回文
            return false;

        while(t>0)          //2. 判断是否将t的所有位数取完
        {
          re = re*10+t%10;  //3. 将t的最后一位拼接在re的后面
          t = t/10;
        }

        return x==re;       //4. 将两数进行比较并返回结果
    }
}

参考:[LeetCode]
判断一个数字是否为回文数

时间: 2024-12-28 02:02:33

LeetCode【9】. Palindrome Number --java的实现的相关文章

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: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] 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 题意: 判断一个数是否是回文数. 分析: 按自己想

【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

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][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