鱼C论坛

 找回密码
 立即注册
查看: 1847|回复: 0

[学习笔记] leetcode 9. Palindrome Number

[复制链接]
发表于 2019-8-28 06:27:45 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.

Example 1:

Input: 121
Output: true
Example 2:

Input: -121
Output: false
Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome.
Example 3:

Input: 10
Output: false
Explanation: Reads 01 from right to left. Therefore it is not a palindrome.
Follow up:

Coud you solve it without converting the integer to a string?


First try, convert integer to string.
class Solution {
    public boolean isPalindrome(int x) {
        
        String a = String.valueOf(x);
        
        return a.equals(reverse(a));
        
    }
    
    public String reverse(String str){
        
        int len = str.length();
        
        String re = "";
        
        for(int i = 0; i< len; i++){
            
            re = str.substring(i,i+1) + re;
            
        }
        
        return re;
    }
}

Second try without converting the integer to string.
class Solution {
    public boolean isPalindrome(int x) {
        
        if(x < 0){
            
            return false;
        }
        
        
        return x == reverse(x);
        
    }
    
    public Integer reverse(int x){
        
        int result = 0;
        
        while(x != 0){
            
            result = result * 10 + x % 10;
            
            x = x/10;
        }
        
        return result;
    }
}

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 04:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表