leetcode刷题之旅(9)Palindrome Number

本文介绍两种方法来判断一个整数是否为回文数:一是将整数转换成字符串并比较;二是通过数学操作逆序数字进行对比。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目描述

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.

思路分析

题意即确认数字是否为回文数。

方法一为暴力求解法,直接数字转换为字符串,两边进行比较。

方法二中,rev通过循环,逐步倒序输出数字,x则是正序。

                例如,x=12345

             

循环次数revx

1

51234
254123
354312
然后通过判断条件,输出false

代码

方法一

class Solution {
  public static boolean isPalindrome(int x) 
	{
		String  str = Integer.toString(x);
		for (int i=0; i<str.length()/2; i++)
		{
			if (str.charAt(i) != str.charAt(str.length()-1-i))
			{
				return false;
			}
		}
		return true;
	} 
}

方法二

public boolean isPalindrome(int x) {
    if (x<0 || (x!=0 && x%10==0)) return false;
    int rev = 0;
    while (x>rev){
    	rev = rev*10 + x%10;
    	x = x/10;
    }
    return (x==rev || x==rev/10);//分别判断数字位数为偶数或奇数的情况
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值